Skip to content
This repository was archived by the owner on Jan 19, 2024. It is now read-only.

Commit 526818e

Browse files
build(deps): update actions/checkout action to v3.4.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
1 parent e68b843 commit 526818e

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Check out code
40-
uses: actions/checkout@v3.1.0
40+
uses: actions/checkout@v3.4.0
4141
with:
4242
fetch-depth: 0 # need to checkout "all commits" for certain features to work (e.g., get all changed files)
4343

@@ -106,7 +106,7 @@ jobs:
106106
runs-on: ubuntu-20.04
107107
steps:
108108
- name: Check out repository
109-
uses: actions/checkout@v3.1.0
109+
uses: actions/checkout@v3.4.0
110110
- name: Unit tests
111111
uses: ./.github/actions/unit-tests
112112

@@ -122,7 +122,7 @@ jobs:
122122
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
123123
steps:
124124
- name: Checkout Code
125-
uses: actions/checkout@v3.1.0
125+
uses: actions/checkout@v3.4.0
126126

127127
- name: Load CI Environment from .ci_env
128128
id: load_ci_env
@@ -179,7 +179,7 @@ jobs:
179179
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
180180
steps:
181181
- name: Checkout Code
182-
uses: actions/checkout@v3.1.0
182+
uses: actions/checkout@v3.4.0
183183

184184
- name: Load CI Environment from .ci_env
185185
id: load_ci_env
@@ -210,7 +210,7 @@ jobs:
210210
VERSION: ${{ needs.prepare_ci_run.outputs.VERSION }}
211211
steps:
212212
- name: Checkout Code
213-
uses: actions/checkout@v3.1.0
213+
uses: actions/checkout@v3.4.0
214214

215215
- name: Set up Go
216216
uses: actions/setup-go@v3.3.1

.github/workflows/integration-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
LATEST_KEPTN_PRERELEASE: ${{ steps.prepare_keptn_version_matrix.outputs.LATEST_PRERELEASE }}
2020
steps:
2121
- name: Check out code.
22-
uses: actions/checkout@v3.1.0
22+
uses: actions/checkout@v3.4.0
2323

2424
- name: Prepare Keptn version matrix
2525
id: prepare_keptn_version_matrix
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
# Checkout code for the integrations tests in test/e2e
5151
- name: Check out code.
52-
uses: actions/checkout@v3.1.0
52+
uses: actions/checkout@v3.4.0
5353

5454
- name: Setup Go
5555
uses: actions/setup-go@v3.3.1

.github/workflows/pre-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-20.04
77
steps:
88
- name: Check out repository
9-
uses: actions/checkout@v3.1.0
9+
uses: actions/checkout@v3.4.0
1010
- name: Unit tests
1111
uses: ./.github/actions/unit-tests
1212

@@ -23,7 +23,7 @@ jobs:
2323
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
2424
steps:
2525
- name: Checkout Code
26-
uses: actions/checkout@v3.1.0
26+
uses: actions/checkout@v3.4.0
2727

2828
- name: Load CI Environment from .ci_env
2929
id: load_ci_env
@@ -64,7 +64,7 @@ jobs:
6464
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
6565
steps:
6666
- name: Checkout Code
67-
uses: actions/checkout@v3.1.0
67+
uses: actions/checkout@v3.4.0
6868

6969
- name: Load CI Environment from .ci_env
7070
id: load_ci_env
@@ -95,7 +95,7 @@ jobs:
9595
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
9696
steps:
9797
- name: Checkout Code
98-
uses: actions/checkout@v3.1.0
98+
uses: actions/checkout@v3.4.0
9999

100100
- name: Run make
101101
run: make build-lint

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-20.04
77
steps:
88
- name: Check out repository
9-
uses: actions/checkout@v3.1.0
9+
uses: actions/checkout@v3.4.0
1010
- name: Unit tests
1111
uses: ./.github/actions/unit-tests
1212

@@ -23,7 +23,7 @@ jobs:
2323
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
2424
steps:
2525
- name: Checkout Code
26-
uses: actions/checkout@v3.1.0
26+
uses: actions/checkout@v3.4.0
2727

2828
- name: Load CI Environment from .ci_env
2929
id: load_ci_env
@@ -64,7 +64,7 @@ jobs:
6464
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
6565
steps:
6666
- name: Checkout Code
67-
uses: actions/checkout@v3.1.0
67+
uses: actions/checkout@v3.4.0
6868

6969
- name: Load CI Environment from .ci_env
7070
id: load_ci_env
@@ -95,7 +95,7 @@ jobs:
9595
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
9696
steps:
9797
- name: Checkout Code
98-
uses: actions/checkout@v3.1.0
98+
uses: actions/checkout@v3.4.0
9999

100100
- name: Run make
101101
run: make build-lint

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- name: Check out code.
9-
uses: actions/checkout@v3.1.0
9+
uses: actions/checkout@v3.4.0
1010

1111
- name: golangci-lint
1212
uses: reviewdog/action-golangci-lint@v2

0 commit comments

Comments
 (0)