Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit 889cbd1

Browse files
🌱 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 | actions/upload-artifact | v4.4.3 | v4.5.0 |
1 parent f048fa7 commit 889cbd1

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.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: "1.22"
1010
go-version-file: "go.mod"
@@ -16,14 +16,14 @@ runs:
1616
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
1717
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
1818
- name: Go Mod Cache
19-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
19+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
2020
with:
2121
path: ${{ steps.go-cache-paths.outputs.go-mod }}
2222
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
2323
restore-keys: |
2424
${{ runner.os }}-go-mod-
2525
- name: Go Build Cache
26-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
26+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
2727
with:
2828
path: ${{ steps.go-cache-paths.outputs.go-build }}
2929
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up QEMU
3838
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
40+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
4141

4242
- name: Generate metadata cspo
4343
id: metacspo
@@ -73,7 +73,7 @@ jobs:
7373
7474
# Load Golang cache build from GitHub
7575
- name: Load cspo Golang cache build from GitHub
76-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
76+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
7777
id: cache
7878
with:
7979
path: /tmp/.cache/cspo
@@ -145,7 +145,7 @@ jobs:
145145
146146
# Upload artifact digests
147147
- name: Upload artifact digests
148-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
148+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
149149
with:
150150
name: image-digest
151151
path: image-digest

.github/workflows/pr-verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
done
4343
4444
- name: Generate Token
45-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
45+
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1
4646
id: generate-token
4747
with:
4848
app-id: ${{ secrets.SCS_APP_ID }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up QEMU
2626
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
28+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
2929

3030
- name: Generate metadata cspo
3131
id: metacspo
@@ -105,7 +105,7 @@ jobs:
105105
106106
# Upload artifact digests
107107
- name: Upload artifact digests
108-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
108+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
109109
with:
110110
name: image-digest cspo
111111
path: image-digest

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

Lines changed: 2 additions & 2 deletions
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
@@ -26,7 +26,7 @@ jobs:
2626
run: make manager-core report-binsize-treemap-all
2727

2828
- name: Upload Report
29-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
29+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
3030
with:
3131
name: reports-${{ github.sha }}
3232
path: .reports

.github/workflows/schedule-cache-cleaner-cspo-image.yaml

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
# qemu is not required as of now because we don't build images for arm64
3636
# use docker/setup-qemu-action@v3 if you want to have arm64 images.
3737
- name: Set up Docker Buildx # required for building image
38-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
38+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
3939

4040
- name: Generate Token
41-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
41+
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1
4242
id: generate-token
4343
with:
4444
app-id: ${{ secrets.SCS_APP_ID }}

0 commit comments

Comments
 (0)