Skip to content

Commit cb4c9f1

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ------------------------- | -------- | ------- | | github-tags | actions/cache | v4.0.2 | v4.1.2 | | github-tags | actions/checkout | v4.1.7 | v4.2.2 | | github-tags | actions/setup-go | v5.0.1 | v5.1.0 | | github-tags | actions/upload-artifact | v4.3.3 | v4.4.3 | | github-tags | docker/build-push-action | v6.1.0 | v6.9.0 | | github-tags | docker/login-action | v3.2.0 | v3.3.0 | | github-tags | renovatebot/github-action | v40.1.12 | v40.3.6 | | github-tags | sigstore/cosign-installer | v3.5.0 | v3.7.0 |
1 parent f329563 commit cb4c9f1

File tree

11 files changed

+34
-34
lines changed

11 files changed

+34
-34
lines changed

.builder-image-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.21
1+
1.1.22

.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@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
7+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
19+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # 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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
26+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # 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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
31+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3232
with:
3333
fetch-depth: 0
3434
- uses: ./.github/actions/setup-go
3535
- name: Set up QEMU
36-
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3
36+
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
38+
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
3939

4040
- name: Generate metadata cso
4141
id: metacso
@@ -47,14 +47,14 @@ jobs:
4747
metadata_tags: ${{ env.metadata_tags }}
4848

4949
- name: Login to ghcr.io for CI
50-
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
50+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
5151
with:
5252
registry: ghcr.io
5353
username: ${{ github.actor }}
5454
password: ${{ secrets.GITHUB_TOKEN }}
5555

5656
- name: Install Cosign
57-
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0
57+
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
5858

5959
- name: Setup Env
6060
run: |
@@ -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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
68+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
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@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
86+
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.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@31159d49c0d4756269a0940a750801a1ea5d7003 # v6
96+
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # 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@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
123+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
132+
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
133133
with:
134134
provenance: false
135135
context: .

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: check for kubebuilder markers
1717
runs-on: ubuntu-22.04
1818
steps:
19-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2020

2121
# go is required for building controller-gen
2222
- uses: ./.github/actions/setup-go

.github/workflows/pr-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ 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.21
24+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.22
2525
credentials:
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.github_token }}
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3131
with:
3232
ref: ${{ github.event.pull_request.head.sha }}
3333

.github/workflows/pr-verify.yml

Lines changed: 1 addition & 1 deletion
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

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2222
with:
2323
fetch-depth: 0
2424
- uses: ./.github/actions/setup-go
2525
- name: Set up QEMU
26-
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3
26+
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
28+
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
2929

3030
- name: Generate metadata cso
3131
id: metacso
@@ -37,14 +37,14 @@ jobs:
3737
metadata_tags: ${{ env.metadata_tags }}
3838

3939
- name: Login to ghcr.io for CI
40-
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
40+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
4141
with:
4242
registry: ghcr.io
4343
username: ${{ github.actor }}
4444
password: ${{ secrets.GITHUB_TOKEN }}
4545

4646
- name: Install Cosign
47-
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0
47+
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
4848

4949
- name: Install Bom
5050
shell: bash
@@ -61,7 +61,7 @@ jobs:
6161
echo 'EOF' >> $GITHUB_ENV
6262
6363
- name: Build and push cso image
64-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6
64+
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # 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@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
109+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
110110
with:
111111
name: image-digest cso
112112
path: image-digest
@@ -135,7 +135,7 @@ jobs:
135135
run: echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
136136

137137
- name: checkout code
138-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
138+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
139139
with:
140140
fetch-depth: 0
141141

@@ -155,7 +155,7 @@ jobs:
155155
make release-notes
156156
157157
- name: Release
158-
uses: softprops/action-gh-release@a74c6b72af54cfa997e81df42d94703d6313a2d0 # v2
158+
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2
159159
with:
160160
draft: true
161161
files: out/*

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

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 cso Golang cache build from GitHub
18-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
18+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
1919
id: cache
2020
with:
2121
path: /tmp/.cache/cso

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
name: Trivy
1010
runs-on: ubuntu-latest
1111
container:
12-
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.21
12+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.22
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
- name: Fixup git permissions
2020
# https://github.com/actions/checkout/issues/766
2121
shell: bash

.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@c8f55efbd427e7465d6da1106e7979bc8aaee856 # v1
36+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # 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@21d88b0bf0183abcee15f990011cca090dfc47dd # v40.1.12
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)