Skip to content

Commit fbe31e7

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ------------------------- | ------- | ------- | | github-tags | docker/build-push-action | v6.13.0 | v6.14.0 | | github-tags | sigstore/cosign-installer | v3.7.0 | v3.8.1 |
1 parent b75f420 commit fbe31e7

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
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.27
1+
1.1.28

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
19+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # 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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
26+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # 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: 6 additions & 6 deletions
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@53851d14592bedcffcf25ea515637cff71ef929a # v3
36+
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
38+
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
3939

4040
- name: Generate metadata cso
4141
id: metacso
@@ -54,7 +54,7 @@ jobs:
5454
password: ${{ secrets.GITHUB_TOKEN }}
5555

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

5959
- name: Setup Env
6060
run: |
@@ -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@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
86+
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6.14.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@ca877d9245402d1537745e0e356eab47c3520991 # v6
96+
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6
9797
id: docker_build_release_cso
9898
with:
9999
provenance: false
@@ -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@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
132+
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6.14.0
133133
with:
134134
provenance: false
135135
context: .

.github/workflows/pr-lint.yml

Lines changed: 1 addition & 1 deletion
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.27
24+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.28
2525
credentials:
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.github_token }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
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@53851d14592bedcffcf25ea515637cff71ef929a # v3
26+
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3
2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
28+
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
2929

3030
- name: Generate metadata cso
3131
id: metacso
@@ -44,7 +44,7 @@ jobs:
4444
password: ${{ secrets.GITHUB_TOKEN }}
4545

4646
- name: Install Cosign
47-
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
47+
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
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@ca877d9245402d1537745e0e356eab47c3520991 # v6
64+
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6
6565
id: docker_build_release_cso
6666
with:
6767
provenance: false

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

Lines changed: 1 addition & 1 deletion
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.27
12+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.28
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}

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

Lines changed: 1 addition & 1 deletion
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@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1
36+
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1
3737
id: generate-token
3838
with:
3939
app-id: ${{ secrets.SCS_APP_ID }}

0 commit comments

Comments
 (0)