Skip to content

Commit bb330d7

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

17 files changed

+34
-34
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
check-latest: true
3939

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

.github/workflows/CI.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Check out code
45-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
45+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4646

4747
- name: Extract branch name
4848
id: extract_branch
@@ -88,7 +88,7 @@ jobs:
8888
folder: "keptn-cert-manager/"
8989
steps:
9090
- name: Check out code
91-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
91+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9292

9393
- name: Set up Go 1.x
9494
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
@@ -103,7 +103,7 @@ jobs:
103103
run: make unit-test
104104

105105
- name: Report code coverage
106-
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
106+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
107107
with:
108108
flags: ${{ matrix.config.name }}
109109
token: ${{ secrets.CODECOV_TOKEN }}
@@ -135,7 +135,7 @@ jobs:
135135
folder: "keptn-cert-manager/"
136136
steps:
137137
- name: Check out code
138-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
138+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
139139

140140
- name: Cache build tools
141141
id: cache-build-tools
@@ -281,10 +281,10 @@ jobs:
281281
runs-on: ubuntu-24.04
282282
steps:
283283
- name: Check out keptn repo
284-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
284+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
285285

286286
- name: Check out helm-charts repo
287-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
287+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
288288
with:
289289
repository: 'keptn/lifecycle-toolkit-charts'
290290
path: ./helm-charts-repository

.github/workflows/component-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Check out code
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323

2424
- name: Set up Go 1.x
2525
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
@@ -34,7 +34,7 @@ jobs:
3434
run: make component-test
3535

3636
- name: Report code coverage
37-
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
37+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
3838
with:
3939
flags: component-tests
4040
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
folder: "lifecycle-operator/"
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131

3232
- name: Setup cluster
3333
uses: ./.github/actions/deploy-keptn-on-cluster

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ jobs:
3939
folder: "keptn-cert-manager/"
4040
steps:
4141
- name: Check out code
42-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4343

4444
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # 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@4afd733a84b1f43292c63897423277bb7f4313a9 # v8
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
@@ -25,7 +25,7 @@ jobs:
2525
# Steps represent a sequence of tasks that will be executed as part of the job
2626
steps:
2727
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
submodules: true
3131
fetch-depth: 0

.github/workflows/integration-test-component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-24.04
2727
steps:
2828
- name: Check out code
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030

3131
- name: Setup cluster
3232
uses: ./.github/actions/deploy-keptn-on-cluster

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-24.04
2727
steps:
2828
- name: Check out code
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030

3131
- name: Setup cluster
3232
uses: ./.github/actions/deploy-keptn-on-cluster

.github/workflows/load-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-24.04
2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828

2929
- name: Cache build tools
3030
id: cache-build-tools

.github/workflows/markdown-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
markdown-link-check:
3333
runs-on: ubuntu-24.04
3434
steps:
35-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636
- uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # v1
3737
with:
3838
config-file: '.github/mlc_config.json'
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-24.04
4646
steps:
4747
- name: Check out code
48-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4949

5050
- name: Run TOC generation
5151
run: |
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-24.04
7373
steps:
7474
- name: Check out code
75-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
75+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7676

7777
- name: Set up Go 1.x
7878
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5

0 commit comments

Comments
 (0)