Skip to content

Commit fafccd3

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ------------------------- | ------ | ------ | | github-tags | actions/checkout | v4.2.2 | v4.3.1 | | github-tags | actions/setup-go | v5.3.0 | v5.6.0 | | github-tags | lycheeverse/lychee-action | v2.3.0 | v2.7.0 |
1 parent eaa800f commit fafccd3

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
7+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4
18+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4
25+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2626
with:
2727
path: ${{ steps.go-cache-paths.outputs.go-build }}
2828
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

.github/workflows/builder-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1818

1919
- name: Set up Docker Buildx
20-
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
20+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
2121

2222
- name: Login to Docker Hub
23-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
23+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
2424
with:
2525
registry: ghcr.io
2626
username: sovereigncloudstack
2727
password: ${{ secrets.GITHUB_TOKEN }}
2828

2929
- name: Build and push
30-
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6
30+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
3131
with:
3232
file: ./images/builder/Dockerfile
3333
context: ./images/builder

.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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.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@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
3030
with:
3131
node-version: "22"
3232
- name: Install renovate

.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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1717
with:
1818
fetch-depth: 0
1919
- run: git fetch --force --tags
20-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
20+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
2121
with:
2222
go-version: stable
2323

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository == 'SovereignCloudStack/csctl'
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1515

1616
- name: Generate Token
1717
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
@@ -21,7 +21,7 @@ jobs:
2121
private_key: ${{ secrets.SCS_APP_PRIVATE_KEY }}
2222

2323
- name: Link Checker
24-
uses: lycheeverse/lychee-action@f613c4a64e50d792e0b31ec34bbcbba12263c6a6 # v2.3.0
24+
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.7.0
2525
id: lychee
2626
env:
2727
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}"

.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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
3434

3535
- name: Generate Token
3636
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2

0 commit comments

Comments
 (0)