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

Commit b8269fd

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ----------------------- | ------ | ------ | | github-tags | actions/cache | v4.2.0 | v5.0.0 | | github-tags | actions/cache | v4 | v5 | | github-tags | actions/checkout | v4.2.2 | v5.0.1 | | github-tags | actions/checkout | v4 | v5 | | github-tags | actions/setup-node | v4 | v5 | | github-tags | actions/upload-artifact | v4.6.0 | v5.0.0 |
1 parent f23bdb5 commit b8269fd

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

.github/actions/setup-go/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
19+
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5
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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
26+
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5
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
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
31+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
3232
with:
3333
fetch-depth: 0
3434
- name: Setup Go
@@ -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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
76+
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
148+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
149149
with:
150150
name: image-digest
151151
path: image-digest

.github/workflows/kubebuilder-markers-checker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: check for kubebuilder markers
1515
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1818

1919
# go is required for building controller-gen
2020
- name: Setup Go

.github/workflows/pr-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
password: ${{ secrets.github_token }}
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3333
with:
3434
ref: ${{ github.event.pull_request.head.sha }}
3535

.github/workflows/pr-verify.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
github_token: ${{ secrets.GITHUB_TOKEN }}
1717

1818
- name: Checkout repository
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2020
with:
2121
ref: ${{ github.event.pull_request.head.sha }}
2222

@@ -29,7 +29,7 @@ jobs:
2929
- name: Verify Starlark
3030
run: make verify-starlark
3131

32-
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
32+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
3333
with:
3434
node-version: "18"
3535
- name: Install renovate

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
2222
with:
2323
fetch-depth: 0
2424
- uses: ./.github/actions/setup-go
@@ -105,7 +105,7 @@ jobs:
105105
106106
# Upload artifact digests
107107
- name: Upload artifact digests
108-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
108+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
109109
with:
110110
name: image-digest cspo
111111
path: image-digest
@@ -134,7 +134,7 @@ jobs:
134134
run: echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
135135

136136
- name: checkout code
137-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
137+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
138138
with:
139139
fetch-depth: 0
140140

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 10
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1313
- name: Fixup git permissions
1414
# https://github.com/actions/checkout/issues/766
1515
shell: bash
@@ -26,7 +26,7 @@ jobs:
2626
run: make manager-core report-binsize-treemap-all
2727

2828
- name: Upload Report
29-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
29+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
18+
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
1919
id: cache
2020
with:
2121
path: /tmp/.cache/cspo

.github/workflows/schedule-scan-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
password: ${{ secrets.github_token }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1919
- name: Fixup git permissions
2020
# https://github.com/actions/checkout/issues/766
2121
shell: bash

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3434

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.

0 commit comments

Comments
 (0)