Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6d561db

Browse files
authoredFeb 26, 2025··
🌱 Update github-actions group (#46)
| datasource | package | from | to | | ----------- | ------------------------- | ------- | ------- | | github-tags | actions/checkout | v4.1.7 | v4.2.2 | | github-tags | actions/setup-go | v5.0.2 | v5.3.0 | | github-tags | renovatebot/github-action | v40.2.7 | v40.3.6 | Co-authored-by: cluster-stack-bot[bot] <143188378+cluster-stack-bot[bot]@users.noreply.github.com>
1 parent 89e60be commit 6d561db

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
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@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
7+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
18+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # 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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
25+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
14+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
28+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2929
with:
3030
ref: ${{ github.event.pull_request.head.sha }}
3131

‎.github/workflows/pr-verify.yml

Lines changed: 3 additions & 3 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
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@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
29+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
3030
with:
3131
node-version: "18"
3232
- name: Install renovate
@@ -39,7 +39,7 @@ jobs:
3939
done
4040
4141
- name: Generate Token
42-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # v1
42+
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1
4343
id: generate-token
4444
with:
4545
app-id: ${{ secrets.SCS_APP_ID }}

‎.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
goreleaser:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717
with:
1818
fetch-depth: 0
1919
- run: git fetch --force --tags
20-
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
20+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
2121
with:
2222
go-version: stable
2323

24-
- uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6
24+
- uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6
2525
with:
2626
distribution: goreleaser
2727
version: latest

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
if: github.repository == 'SovereignCloudStack/csctl-plugin-openstack'
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
14+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1515

1616
- name: Generate Token
17-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # v1
17+
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1
1818
id: generate-token
1919
with:
2020
app-id: ${{ secrets.SCS_APP_ID }}
@@ -39,7 +39,7 @@ jobs:
3939
link-checker
4040
4141
- name: Update Issue
42-
uses: peter-evans/create-issue-from-file@24452a72d85239eacf1468b0f1982a9f3fec4c94 # v5
42+
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5
4343
with:
4444
title: Link Checker Dashboard
4545
issue-number: "${{ steps.link-checker-issue.outputs.issue_number }}"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434

3535
- name: Generate Token
36-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # v1
36+
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1
3737
id: generate-token
3838
with:
3939
app-id: ${{ secrets.SCS_APP_ID }}
@@ -45,7 +45,7 @@ jobs:
4545
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "$GITHUB_ENV"
4646
4747
- name: Renovate
48-
uses: renovatebot/github-action@630a255a1f2f56c8d8ce160bed3e3ca577ca53e2 # v40.2.7
48+
uses: renovatebot/github-action@0984fb80fc633b17e57f3e8b6c007fe0dc3e0d62 # v40.3.6
4949
env:
5050
RENOVATE_HOST_RULES: '[{"hostType": "docker", "matchHost": "ghcr.io", "username": "${{ github.actor }}", "password": "${{ secrets.GITHUB_TOKEN }}" }]'
5151
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '[".*"]'

0 commit comments

Comments
 (0)
Please sign in to comment.