Skip to content

Commit e28b6b2

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.0 |
1 parent 38f2938 commit e28b6b2

File tree

10 files changed

+26
-26
lines changed

10 files changed

+26
-26
lines changed

.github/actions/e2e/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ runs:
2323
using: "composite"
2424
steps:
2525
- uses: ./.github/actions/setup-go
26-
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
26+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
2727
with:
2828
path: hack/tools/bin
2929
key: ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}
3030
restore-keys: |
3131
${{ runner.os }}-tools-bin-e2e-
3232
${{ runner.os }}-tools-bin-
3333
- name: Download artifact
34-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
34+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
3535
with:
3636
name: test-release
3737
path: out
@@ -55,7 +55,7 @@ runs:
5555
TAG: ${{ steps.meta.outputs.version }}
5656

5757
- name: Get HCLOUD_TOKEN # sets env.HCLOUD_TOKEN
58-
uses: hetznercloud/tps-action@dee5dd2546322c28ed8f74b910189066e8b6f31a # main
58+
uses: hetznercloud/tps-action@d0d1054a75224f1fd1c2505420ae1d8327fa3352 # main
5959

6060
- name: "e2e-${{ inputs.e2e_name }}"
6161
shell: bash
@@ -73,7 +73,7 @@ runs:
7373
CAPH_LATEST_VERSION: "v1.0.1"
7474
run: make ${{ inputs.e2e_make_target }}
7575
- name: Upload artifact
76-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
76+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
7777
if: ${{ !cancelled() }}
7878
with:
7979
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/setup-go/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Install go
7-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
7+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
88
with:
99
go-version-file: "go.mod"
1010
cache: true
@@ -15,14 +15,14 @@ runs:
1515
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
1616
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
1717
- name: Go Mod Cache
18-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
18+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
1919
with:
2020
path: ${{ steps.go-cache-paths.outputs.go-mod }}
2121
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
2222
restore-keys: |
2323
${{ runner.os }}-go-mod-
2424
- name: Go Build Cache
25-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
25+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
2626
with:
2727
path: ${{ steps.go-cache-paths.outputs.go-build }}
2828
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- uses: ./.github/actions/setup-go
7-
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
7+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
88
with:
99
path: hack/tools/bin
1010
key: ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}
@@ -25,7 +25,7 @@ runs:
2525
TAG: ${{ steps.meta.outputs.version }}
2626
run: make test-release
2727
- name: Upload artifact
28-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
28+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
2929
if: ${{ !cancelled() }}
3030
with:
3131
name: test-release

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up QEMU
3636
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
38+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
3939

4040
- name: Generate metadata
4141
id: meta
@@ -52,7 +52,7 @@ jobs:
5252
password: ${{ secrets.GITHUB_TOKEN }}
5353

5454
- name: Install Cosign
55-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
55+
uses: sigstore/cosign-installer@fb28c2b6339dcd94da6e4cbcbc5e888961f6f8c3 # v3.9.0
5656

5757
- name: Install Bom
5858
shell: bash
@@ -88,7 +88,7 @@ jobs:
8888
8989
# Import GitHub's cache build to docker cache
9090
- name: Copy Caph Golang cache to docker cache
91-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
91+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
9292
with:
9393
provenance: false
9494
context: /tmp/.cache/caph
@@ -98,7 +98,7 @@ jobs:
9898
target: import-cache
9999

100100
- name: Build and push manager image
101-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
101+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
102102
id: docker_build_release
103103
with:
104104
provenance: false
@@ -151,7 +151,7 @@ jobs:
151151
# Store docker's golang's cache build locally only on the main branch
152152
- name: Store Caph Golang cache build locally
153153
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
154-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
154+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
155155
with:
156156
provenance: false
157157
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up QEMU
2727
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
29+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
3030

3131
- name: Generate metadata
3232
id: meta
@@ -43,7 +43,7 @@ jobs:
4343
password: ${{ secrets.GITHUB_TOKEN }}
4444

4545
- name: Install Cosign
46-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
46+
uses: sigstore/cosign-installer@fb28c2b6339dcd94da6e4cbcbc5e888961f6f8c3 # v3.9.0
4747

4848
- name: Install Bom
4949
shell: bash
@@ -60,7 +60,7 @@ jobs:
6060
echo 'EOF' >> $GITHUB_ENV
6161
6262
- name: Build and push manager image
63-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
63+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
6464
id: docker_build_release
6565
with:
6666
provenance: false
@@ -133,7 +133,7 @@ jobs:
133133
with:
134134
fetch-depth: 0
135135
- name: Install go
136-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
136+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
137137
with:
138138
go-version-file: "go.mod"
139139
cache: true
@@ -148,7 +148,7 @@ jobs:
148148
run: |
149149
make release-notes
150150
- name: Release
151-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
151+
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2
152152
with:
153153
draft: true
154154
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
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
1717

1818
- name: Install go
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
cache: true

.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
echo name=${NAME} >> $GITHUB_OUTPUT
4141
4242
- name: Install go
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)