Skip to content

Commit eecaaf4

Browse files
Bump actions/checkout from 2 to 3 (#244)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 31427d4 commit eecaaf4

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414

1515
- name: Initialize CodeQL
1616
uses: github/codeql-action/init@v1

.github/workflows/main-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: build
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616

@@ -36,7 +36,7 @@ jobs:
3636
name: integration-test
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4040
with:
4141
fetch-depth: 0
4242

@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
needs: [build, integration-test]
6565
steps:
66-
- uses: actions/checkout@v2
66+
- uses: actions/checkout@v3
6767
with:
6868
fetch-depth: 0
6969

.github/workflows/patch-release-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
- id: checkout-release-branch
2929
name: Check out release branch
3030
continue-on-error: true
31-
uses: actions/checkout@v2.3.4
31+
uses: actions/checkout@v3
3232
with:
3333
ref: ${{ steps.parse-release-branch.outputs.release-branch-name }}
3434
fetch-depth: 0
3535

3636
- id: checkout-release-tag
3737
name: Check out release tag
3838
if: ${{ steps.checkout-release-branch.outcome == 'failure' }}
39-
uses: actions/checkout@v2.3.4
39+
uses: actions/checkout@v3
4040
with:
4141
ref: ${{ steps.parse-release-branch.outputs.release-tag-name }}
4242
fetch-depth: 0
@@ -52,7 +52,7 @@ jobs:
5252
needs: prepare-release-branch
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v3
5656
with:
5757
fetch-depth: 0
5858

@@ -79,7 +79,7 @@ jobs:
7979
needs: prepare-release-branch
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@v2
82+
- uses: actions/checkout@v3
8383
with:
8484
fetch-depth: 0
8585

@@ -106,7 +106,7 @@ jobs:
106106
runs-on: ubuntu-latest
107107
needs: [ build, integration-test ]
108108
steps:
109-
- uses: actions/checkout@v2
109+
- uses: actions/checkout@v3
110110
with:
111111
fetch-depth: 0
112112

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: build
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616

@@ -37,7 +37,7 @@ jobs:
3737
name: integration-test
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
with:
4242
fetch-depth: 0
4343

.github/workflows/release-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: build
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818

@@ -38,7 +38,7 @@ jobs:
3838
name: integration-test
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
with:
4343
fetch-depth: 0
4444

@@ -65,7 +65,7 @@ jobs:
6565
runs-on: ubuntu-latest
6666
needs: [build, integration-test]
6767
steps:
68-
- uses: actions/checkout@v2
68+
- uses: actions/checkout@v3
6969
with:
7070
fetch-depth: 0
7171

0 commit comments

Comments
 (0)