Skip to content

Commit fb46870

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/login-action | v3.4.0 | v3.5.0 | | github-tags | docker/metadata-action | v5.7.0 | v5.8.0 | | github-tags | docker/setup-buildx-action | v3.10.0 | v3.11.1 | | github-tags | sigstore/cosign-installer | v3.8.1 | v3.9.2 |
1 parent 8632a84 commit fb46870

File tree

10 files changed

+31
-31
lines changed

10 files changed

+31
-31
lines changed

.github/actions/e2e/action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ 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
with:
2727
go-version-file: "go.mod"
2828

29-
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
29+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
3030
with:
3131
path: hack/tools/bin
3232
key: ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}
@@ -35,7 +35,7 @@ runs:
3535
${{ runner.os }}-tools-bin-
3636
3737
- name: Download artifact
38-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
38+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
3939
with:
4040
name: test-release
4141
path: out
@@ -60,7 +60,7 @@ runs:
6060
TAG: ${{ steps.meta.outputs.version }}
6161

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

6565
- name: "e2e-${{ inputs.e2e_name }}"
6666
shell: bash
@@ -79,7 +79,7 @@ runs:
7979
run: make ${{ inputs.e2e_make_target }}
8080

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ 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
14-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
14+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
1515
with:
1616
registry: ghcr.io
1717
username: ${{ github.actor }}
@@ -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/metadata/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
steps:
2323
- name: Docker manager metadata
2424
id: meta
25-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
25+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
2626
with:
2727
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
2828
flavor: ${{ inputs.metadata_flavor }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ 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
with:
88
go-version-file: "go.mod"
99

10-
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
10+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
1111
with:
1212
path: hack/tools/bin
1313
key: ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}
@@ -29,7 +29,7 @@ runs:
2929
run: make test-release
3030

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

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ 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
with:
3737
go-version-file: "go.mod"
3838

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

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

4545
- name: Generate metadata
4646
id: meta
@@ -50,14 +50,14 @@ jobs:
5050
metadata_tags: ${{ env.metadata_tags }}
5151

5252
- name: Login to ghcr.io for CI
53-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
53+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
5454
with:
5555
registry: ghcr.io
5656
username: ${{ github.actor }}
5757
password: ${{ secrets.GITHUB_TOKEN }}
5858

5959
- name: Install Cosign
60-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
60+
uses: sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
6161

6262
- name: Install Bom
6363
shell: bash
@@ -93,7 +93,7 @@ jobs:
9393
9494
# Import GitHub's cache build to docker cache
9595
- name: Copy Caph Golang cache to docker cache
96-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
96+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
9797
with:
9898
provenance: false
9999
context: /tmp/.cache/caph
@@ -103,7 +103,7 @@ jobs:
103103
target: import-cache
104104

105105
- name: Build and push manager image
106-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
106+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
107107
id: docker_build_release
108108
with:
109109
provenance: false
@@ -156,7 +156,7 @@ jobs:
156156
# Store docker's golang's cache build locally only on the main branch
157157
- name: Store Caph Golang cache build locally
158158
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
159-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
159+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
160160
with:
161161
provenance: false
162162
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ 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
with:
2828
go-version-file: "go.mod"
2929

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

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

3636
- name: Generate metadata
3737
id: meta
@@ -41,14 +41,14 @@ jobs:
4141
metadata_tags: ${{ env.metadata_tags }}
4242

4343
- name: Login to ghcr.io for CI
44-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
44+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
4545
with:
4646
registry: ghcr.io
4747
username: ${{ github.actor }}
4848
password: ${{ secrets.GITHUB_TOKEN }}
4949

5050
- name: Install Cosign
51-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
51+
uses: sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
5252

5353
- name: Install Bom
5454
shell: bash
@@ -65,7 +65,7 @@ jobs:
6565
echo 'EOF' >> $GITHUB_ENV
6666
6767
- name: Build and push manager image
68-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
68+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
6969
id: docker_build_release
7070
with:
7171
provenance: false
@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
fetch-depth: 0
141141

142-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
142+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
143143
with:
144144
go-version-file: "go.mod"
145145

@@ -156,7 +156,7 @@ jobs:
156156
make release-notes
157157
158158
- name: Release
159-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
159+
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2
160160
with:
161161
draft: true
162162
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
with:
2121
go-version-file: "go.mod"
2222

.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
with:
4545
go-version-file: "go.mod"
4646

0 commit comments

Comments
 (0)