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

Commit 7e959b8

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ------------------ | ------ | ------ | | 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 |
1 parent 6d561db commit 7e959b8

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4
18+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4
25+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
2626
with:
2727
path: ${{ steps.go-cache-paths.outputs.go-build }}
2828
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1515
with:
1616
fetch-depth: 0
1717
- uses: ./.github/actions/setup-go

.github/workflows/pr-lint.yml

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

.github/workflows/pr-verify.yml

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

@@ -26,7 +26,7 @@ jobs:
2626
- name: Verify Shellcheck
2727
run: make verify-shellcheck
2828

29-
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
29+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
3030
with:
3131
node-version: "18"
3232
- name: Install renovate

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
goreleaser:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1717
with:
1818
fetch-depth: 0
1919
- run: git fetch --force --tags

.github/workflows/schedule-link-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository == 'SovereignCloudStack/csctl-plugin-openstack'
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1515

1616
- name: Generate Token
1717
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1

.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
- name: Generate Token
3636
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1

0 commit comments

Comments
 (0)