Skip to content

Commit 434481b

Browse files
authored
Merge pull request #267 from SovereignCloudStack/renovate/github-actions
🌱 Update github-actions group (minor)
2 parents a62d67a + 7e3d06f commit 434481b

8 files changed

+20
-20
lines changed

.builder-image-version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.26
1+
1.1.27

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

+3-3
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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
88
with:
99
go-version: "1.22"
1010
go-version-file: "go.mod"
@@ -16,14 +16,14 @@ runs:
1616
echo "::set-output name=go-build::$(go env GOCACHE)"
1717
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
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.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
fetch-depth: 0
3434
- uses: ./.github/actions/setup-go
3535
- name: Set up QEMU
36-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
36+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
38+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
3939

4040
- name: Generate metadata cso
4141
id: metacso
@@ -65,7 +65,7 @@ jobs:
6565
6666
# Load Golang cache build from GitHub
6767
- name: Load cso Golang cache build from GitHub
68-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
68+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
6969
id: cache
7070
with:
7171
path: /tmp/.cache/cso
@@ -83,7 +83,7 @@ jobs:
8383
8484
# Import GitHub's cache build to docker cache
8585
- name: Copy cso Golang cache to docker cache
86-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
86+
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
8787
with:
8888
provenance: false
8989
context: /tmp/.cache/cso
@@ -93,7 +93,7 @@ jobs:
9393
target: import-cache
9494

9595
- name: Build and push cso image
96-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
96+
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6
9797
id: docker_build_release_cso
9898
with:
9999
provenance: false
@@ -120,7 +120,7 @@ jobs:
120120
121121
# Upload artifact digests
122122
- name: Upload artifact digests
123-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
123+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
124124
with:
125125
name: image-digest
126126
path: image-digest
@@ -129,7 +129,7 @@ jobs:
129129
# Store docker's golang's cache build locally only on the main branch
130130
- name: Store cso Golang cache build locally
131131
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
132-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
132+
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
133133
with:
134134
provenance: false
135135
context: .

.github/workflows/pr-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
2222
runs-on: ubuntu-latest
2323
container:
24-
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.26
24+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.27
2525
credentials:
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.github_token }}

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
fetch-depth: 0
2424
- uses: ./.github/actions/setup-go
2525
- name: Set up QEMU
26-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
26+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # 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 cso
3131
id: metacso
@@ -61,7 +61,7 @@ jobs:
6161
echo 'EOF' >> $GITHUB_ENV
6262
6363
- name: Build and push cso image
64-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
64+
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6
6565
id: docker_build_release_cso
6666
with:
6767
provenance: false
@@ -106,7 +106,7 @@ jobs:
106106
107107
# Upload artifact digests
108108
- name: Upload artifact digests
109-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
109+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
110110
with:
111111
name: image-digest cso
112112
path: image-digest
@@ -155,7 +155,7 @@ jobs:
155155
make release-notes
156156
157157
- name: Release
158-
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2
158+
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
159159
with:
160160
draft: true
161161
files: out/*

.github/workflows/schedule-cache-cleaner-cso-image.yml

+1-1
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 cso 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/cso

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Trivy
1010
runs-on: ubuntu-latest
1111
container:
12-
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.26
12+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.27
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434

3535
- name: Generate Token
36-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
36+
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1
3737
id: generate-token
3838
with:
3939
app-id: ${{ secrets.SCS_APP_ID }}

0 commit comments

Comments
 (0)