Skip to content

Commit 7a5b57c

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | -------------------------- | ------- | ------- | | github-tags | actions/setup-go | v5.3.0 | v5.5.0 | | github-tags | docker/build-push-action | v6.15.0 | v6.18.0 | | github-tags | docker/setup-buildx-action | v3.10.0 | v3.11.1 | | github-tags | sigstore/cosign-installer | v3.8.1 | v3.9.1 |
1 parent edcdcc5 commit 7a5b57c

File tree

9 files changed

+27
-27
lines changed

9 files changed

+27
-27
lines changed

.github/actions/e2e/action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ inputs:
2222
runs:
2323
using: "composite"
2424
steps:
25-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
25+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2626

27-
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
27+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
2828
with:
2929
path: hack/tools/bin
3030
key: ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}
@@ -33,7 +33,7 @@ runs:
3333
${{ runner.os }}-tools-bin-
3434
3535
- name: Download artifact
36-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
36+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
3737
with:
3838
name: test-release
3939
path: out
@@ -58,7 +58,7 @@ runs:
5858
TAG: ${{ steps.meta.outputs.version }}
5959

6060
- name: Get HCLOUD_TOKEN # sets env.HCLOUD_TOKEN
61-
uses: hetznercloud/tps-action@dee5dd2546322c28ed8f74b910189066e8b6f31a # main
61+
uses: hetznercloud/tps-action@d0d1054a75224f1fd1c2505420ae1d8327fa3352 # main
6262

6363
- name: "e2e-${{ inputs.e2e_name }}"
6464
shell: bash
@@ -77,7 +77,7 @@ runs:
7777
run: make ${{ inputs.e2e_make_target }}
7878

7979
- name: Upload artifact
80-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
80+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8181
if: ${{ !cancelled() }}
8282
with:
8383
name: e2e-${{ inputs.e2e_name }}

.github/actions/manager-image/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
using: "composite"
99
steps:
1010
- name: Set up Docker Buildx
11-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
11+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
1212

1313
- name: Login to ghcr.io for CI
1414
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
@@ -44,7 +44,7 @@ runs:
4444
4545
# Import GitHub's cache build to docker cache
4646
- name: Copy Caph Golang cache to docker cache
47-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
47+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
4848
with:
4949
provenance: false
5050
context: /tmp/.cache/caph
@@ -54,7 +54,7 @@ runs:
5454
target: import-cache
5555

5656
- name: Build and push manager image
57-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
57+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
5858
with:
5959
provenance: false
6060
context: .

.github/actions/test-release/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ description: "Testing Release"
33
runs:
44
using: "composite"
55
steps:
6-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
6+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
77

8-
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
8+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
99
with:
1010
path: hack/tools/bin
1111
key: ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}
@@ -27,7 +27,7 @@ runs:
2727
run: make test-release
2828

2929
- name: Upload artifact
30-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
30+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
3131
if: ${{ !cancelled() }}
3232
with:
3333
name: test-release

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
with:
3333
fetch-depth: 0
3434

35-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
35+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3636

3737
- name: Set up QEMU
3838
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
3939

4040
- name: Set up Docker Buildx
41-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
41+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
4242

4343
- name: Generate metadata
4444
id: meta
@@ -55,7 +55,7 @@ jobs:
5555
password: ${{ secrets.GITHUB_TOKEN }}
5656

5757
- name: Install Cosign
58-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
58+
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.9.1
5959

6060
- name: Install Bom
6161
shell: bash
@@ -91,7 +91,7 @@ jobs:
9191
9292
# Import GitHub's cache build to docker cache
9393
- name: Copy Caph Golang cache to docker cache
94-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
94+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
9595
with:
9696
provenance: false
9797
context: /tmp/.cache/caph
@@ -101,7 +101,7 @@ jobs:
101101
target: import-cache
102102

103103
- name: Build and push manager image
104-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
104+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
105105
id: docker_build_release
106106
with:
107107
provenance: false
@@ -154,7 +154,7 @@ jobs:
154154
# Store docker's golang's cache build locally only on the main branch
155155
- name: Store Caph Golang cache build locally
156156
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
157-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
157+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
158158
with:
159159
provenance: false
160160
context: .

.github/workflows/pr-verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Verify Starlark
4949
run: make verify-starlark
5050

51-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
51+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
5252
with:
5353
node-version: "22"
5454
- name: Install renovate

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525

26-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
26+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2727

2828
- name: Set up QEMU
2929
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
32+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
3333

3434
- name: Generate metadata
3535
id: meta
@@ -46,7 +46,7 @@ jobs:
4646
password: ${{ secrets.GITHUB_TOKEN }}
4747

4848
- name: Install Cosign
49-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
49+
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.9.1
5050

5151
- name: Install Bom
5252
shell: bash
@@ -63,7 +63,7 @@ jobs:
6363
echo 'EOF' >> $GITHUB_ENV
6464
6565
- name: Build and push manager image
66-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
66+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
6767
id: docker_build_release
6868
with:
6969
provenance: false
@@ -137,7 +137,7 @@ jobs:
137137
with:
138138
fetch-depth: 0
139139

140-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
140+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
141141

142142
- name: install kustomize
143143
run: |
@@ -152,7 +152,7 @@ jobs:
152152
make release-notes
153153
154154
- name: Release
155-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
155+
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2
156156
with:
157157
draft: true
158158
files: out/*

.github/workflows/report-bin-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
shell: bash
1717
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
1818

19-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
19+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2020

2121
- name: Create Binsize Report
2222
run: make caph report-binsize-treemap-all

.github/workflows/schedule-update-bot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434

3535
- name: Generate Token
36-
uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1
36+
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
3737
id: generate-token
3838
with:
3939
app-id: ${{ secrets.SYSELF_APP_ID }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fi
4141
echo name=${NAME} >> $GITHUB_OUTPUT
4242
43-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
43+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4444

4545
- name: Install dependencies
4646
run: make gotestsum go-cover-treemap setup-envtest

0 commit comments

Comments
 (0)