Skip to content

Commit 3415fae

Browse files
🌱 Update github-actions group
| datasource | package | from | to | | ----------- | ----------------------- | ------ | ------ | | github-tags | actions/cache | v4.2.4 | v6.0.0 | | github-tags | actions/cache | v4 | v6 | | github-tags | actions/checkout | v4.3.0 | v6.0.3 | | github-tags | actions/checkout | v4 | v6 | | github-tags | actions/upload-artifact | v4.6.2 | v6.0.0 | | github-tags | docker/metadata-action | v5.8.0 | v6.1.0 |
1 parent c82e9ba commit 3415fae

11 files changed

Lines changed: 18 additions & 18 deletions

.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@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.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@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
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@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
31+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3232
with:
3333
fetch-depth: 0
3434
- uses: ./.github/actions/setup-go
@@ -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@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
6969
id: cache
7070
with:
7171
path: /tmp/.cache/cso
@@ -120,7 +120,7 @@ jobs:
120120
121121
# Upload artifact digests
122122
- name: Upload artifact digests
123-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
123+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
124124
with:
125125
name: image-digest
126126
path: image-digest

.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-24.04
1818
steps:
19-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
19+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
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.34
24+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.35
2525
credentials:
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.github_token }}
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
30+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3131
with:
3232
ref: ${{ github.event.pull_request.head.sha }}
3333

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
21+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2222
with:
2323
fetch-depth: 0
2424
- uses: ./.github/actions/setup-go
@@ -106,7 +106,7 @@ jobs:
106106
107107
# Upload artifact digests
108108
- name: Upload artifact digests
109-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
109+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
138+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
139139
with:
140140
fetch-depth: 0
141141

.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@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
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.34
12+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.35
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
18+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1919
- name: Fixup git permissions
2020
# https://github.com/actions/checkout/issues/766
2121
shell: bash

.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
33+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3434

3535
- name: Generate Token
3636
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2

0 commit comments

Comments
 (0)