Skip to content

Commit ddb8e0d

Browse files
🌱 Update github-actions group (minor) (#1513)
🌱 Update github-actions group | datasource | package | from | to | | ----------- | -------------------------- | ------ | ------- | | github-tags | actions/cache | v4.1.2 | v4.2.0 | | github-tags | actions/setup-go | v5.1.0 | v5.2.0 | | github-tags | docker/build-push-action | v6.9.0 | v6.10.0 | | github-tags | docker/setup-buildx-action | v3.7.1 | v3.8.0 | Co-authored-by: syself-bot[bot] <115953087+syself-bot[bot]@users.noreply.github.com>
1 parent 4a80735 commit ddb8e0d

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.github/actions/e2e/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
using: "composite"
2727
steps:
2828
- uses: ./.github/actions/setup-go
29-
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
29+
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
3030
with:
3131
path: hack/tools/bin
3232
key: ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}

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

Lines changed: 4 additions & 4 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@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
11+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
1212

1313
- name: Login to ghcr.io for CI
1414
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
@@ -26,7 +26,7 @@ runs:
2626

2727
# Load Golang cache build from GitHub
2828
- name: Load Caph Golang cache build from GitHub
29-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
29+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
3030
id: cache
3131
with:
3232
path: /tmp/.cache/caph
@@ -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@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
47+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.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@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
57+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # 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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
7+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.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@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
18+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # 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@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
25+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # 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: 1 addition & 1 deletion
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@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
7+
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
88
with:
99
path: hack/tools/bin
1010
key: ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}

.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@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
38+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
3939

4040
- name: Generate metadata
4141
id: meta
@@ -70,7 +70,7 @@ jobs:
7070
7171
# Load Golang cache build from GitHub
7272
- name: Load Caph Golang cache build from GitHub
73-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
73+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
7474
id: cache
7575
with:
7676
path: /tmp/.cache/caph
@@ -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@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
91+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.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@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
101+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
102102
id: docker_build_release
103103
with:
104104
provenance: false
@@ -150,7 +150,7 @@ jobs:
150150
# Store docker's golang's cache build locally only on the main branch
151151
- name: Store Caph Golang cache build locally
152152
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
153-
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
153+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
154154
with:
155155
provenance: false
156156
context: .

.github/workflows/release.yml

Lines changed: 3 additions & 3 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@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
29+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
3030

3131
- name: Generate metadata
3232
id: meta
@@ -60,7 +60,7 @@ jobs:
6060
echo 'EOF' >> $GITHUB_ENV
6161
6262
- name: Build and push manager image
63-
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
63+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
6464
id: docker_build_release
6565
with:
6666
provenance: false
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
fetch-depth: 0
134134
- name: Install go
135-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
135+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
136136
with:
137137
go-version-file: "go.mod"
138138
cache: true

.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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
19+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2020
with:
2121
go-version-file: "go.mod"
2222
cache: true

.github/workflows/schedule-cache-cleaner-caph-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# Load Golang cache build from GitHub
1818
- name: Load Caph Golang cache build from GitHub
19-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
19+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
2020
id: cache
2121
with:
2222
path: /tmp/.cache/caph

.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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
43+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
4444
with:
4545
go-version-file: "go.mod"
4646

0 commit comments

Comments
 (0)