Skip to content

Commit 80bfa28

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ---------------------- | ------ | ------ | | github-tags | actions/cache | v4.2.4 | v4.3.0 | | github-tags | docker/login-action | v3.5.0 | v3.6.0 | | github-tags | docker/metadata-action | v5.8.0 | v5.9.0 |
1 parent b3680fb commit 80bfa28

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
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.34
1+
1.1.35

.github/actions/metadata/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
steps:
2323
- name: Docker manager metadata
2424
id: meta
25-
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
25+
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
2626
with:
2727
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
2828
flavor: ${{ inputs.metadata_flavor }}

.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@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
19+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 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@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
26+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
metadata_tags: ${{ env.metadata_tags }}
4848

4949
- name: Login to ghcr.io for CI
50-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
50+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5151
with:
5252
registry: ghcr.io
5353
username: ${{ github.actor }}
@@ -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@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
68+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6969
id: cache
7070
with:
7171
path: /tmp/.cache/cso

.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.34
24+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.35
2525
credentials:
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.github_token }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
metadata_tags: ${{ env.metadata_tags }}
3838

3939
- name: Login to ghcr.io for CI
40-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
40+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
4141
with:
4242
registry: ghcr.io
4343
username: ${{ github.actor }}
@@ -155,7 +155,7 @@ jobs:
155155
make release-notes
156156
157157
- name: Release
158-
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2
158+
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090 # 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@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
18+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
1919
id: cache
2020
with:
2121
path: /tmp/.cache/cso

.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.34
12+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.35
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}

0 commit comments

Comments
 (0)