Skip to content

Commit ea45ebb

Browse files
deps: update github actions
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d6fd74d commit ea45ebb

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

.github/actions/deploy-keptn-on-cluster/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ runs:
3030
using: "composite"
3131
steps:
3232
- name: Set up Go 1.x
33-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
33+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
3434
with:
3535
go-version: ${{ env.GO_VERSION }}
3636
cache: true
3737
cache-dependency-path: '**/go.sum'
3838
check-latest: true
3939

4040
- name: Download artifacts
41-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
41+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
4242
with:
4343
path: ~/download/artifacts
4444

.github/workflows/CI.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9292

9393
- name: Set up Go 1.x
94-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
94+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
9595
with:
9696
go-version: ${{ env.GO_VERSION }}
9797
cache: true
@@ -139,7 +139,7 @@ jobs:
139139

140140
- name: Cache build tools
141141
id: cache-build-tools
142-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
142+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
143143
with:
144144
path: ./${{ matrix.config.folder }}bin
145145
key: build-tools-${{ github.ref_name }}
@@ -149,7 +149,7 @@ jobs:
149149
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
150150

151151
- name: Build Docker Image
152-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
152+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6.16.0
153153
with:
154154
context: ${{ matrix.config.folder }}
155155
platforms: linux/amd64,linux/arm64

.github/workflows/component-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323

2424
- name: Set up Go 1.x
25-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
25+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
2626
with:
2727
go-version: ${{ env.GO_VERSION }}
2828
cache: true

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
- name: Check out code
4242
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4343

44-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
44+
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
4545
with:
4646
go-version: ${{ env.GO_VERSION }}
4747
check-latest: true
4848

4949
- name: golangci-lint
50-
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # v6
50+
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6
5151
with:
5252
working-directory: ${{ matrix.config.folder }}
5353
version: ${{ env.GOLANGCI_LINT_VERSION }}

.github/workflows/htmltest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fetch-depth: 0
3232

3333
- name: Cache HTMLTest packages
34-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
34+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
3535
with:
3636
path: |
3737
tmp/.htmltest

.github/workflows/load-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Cache build tools
3030
id: cache-build-tools
31-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
31+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
3232
with:
3333
path: /usr/local/bin/kube-burner
3434
key: kube-burner-${{ env.KUBE_BURNER_VERSION }}

.github/workflows/markdown-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7676

7777
- name: Set up Go 1.x
78-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
78+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
7979
with:
8080
go-version: ${{ env.GO_VERSION }}
8181
check-latest: true

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
156156

157157
- name: Login to GitHub Container Registry
158-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
158+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
159159
with:
160160
registry: "ghcr.io"
161161
username: ${{ github.actor }}
@@ -179,7 +179,7 @@ jobs:
179179
180180
- name: Build Docker Image
181181
id: docker_build_image
182-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
182+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6.16.0
183183
with:
184184
context: ${{ matrix.config.folder }}
185185
platforms: linux/amd64,linux/arm64
@@ -208,7 +208,7 @@ jobs:
208208
${{ env.IMAGE_NAME }}@${{ env.IMAGE_DIGEST }}
209209
210210
- name: Generate SBOM
211-
uses: anchore/sbom-action@f325610c9f50a54015d37c8d16cb3b0e2c8f4de0 # v0.18.0
211+
uses: anchore/sbom-action@9f7302141466aa6482940f15371237e9d9f4c34a # v0.19.0
212212
with:
213213
image: ${{ env.IMAGE_NAME }}:${{ steps.clean-image-tag.outputs.IMAGE_TAG }}
214214
artifact-name: sbom-${{ matrix.config.name }}

.github/workflows/security-scans.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
steps:
100100
- name: Set up Go
101101
if: matrix.tool == 'kubeconform'
102-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
102+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
103103
with:
104104
go-version: ${{ env.GO_VERSION }}
105105
check-latest: true
@@ -113,7 +113,7 @@ jobs:
113113

114114
- name: Download tag
115115
id: download_manifests
116-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
116+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
117117
with:
118118
name: tag
119119
path: tag
@@ -226,7 +226,7 @@ jobs:
226226

227227
- name: Download images
228228
id: download_images
229-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
229+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
230230
with:
231231
name: images
232232
path: images
@@ -254,7 +254,7 @@ jobs:
254254
- "keptn-cert-manager"
255255
steps:
256256
- name: Set up Go 1.x
257-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
257+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
258258
with:
259259
cache-dependency-path: ${{ matrix.artifact }}/go.sum
260260
go-version: ${{ env.GO_VERSION }}

.github/workflows/validate-helm-chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4040

4141
- name: Set up Node
42-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
42+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
4343
with:
4444
node-version: 16
4545

0 commit comments

Comments
 (0)