Skip to content

Commit e085bdd

Browse files
Update actions/checkout action to v3
1 parent 964753f commit e085bdd

13 files changed

+13
-13
lines changed

.github/workflows/centos-fmt-clippy-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
with:
2727
# v2 defaults to a shallow checkout, but we need at least to the previous tag
2828
fetch-depth: 0

.github/workflows/deploy-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Documentation
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
1717
- name: Install mdbook

.github/workflows/linux-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
#snap_arch: armhf
3535
steps:
3636
- name: Clone repo
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838
with:
3939
# v2 defaults to a shallow checkout, but we need at least to the previous tag
4040
fetch-depth: 0

.github/workflows/linux-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
#snap_arch: armhf
2929
steps:
3030
- name: Clone repo
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3434
fetch-depth: 0

.github/workflows/linux-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
#snap_arch: s390x # skip-pr skip-master
5858
steps:
5959
- name: Clone repo
60-
uses: actions/checkout@v2
60+
uses: actions/checkout@v3
6161
with:
6262
# v2 defaults to a shallow checkout, but we need at least to the previous tag
6363
fetch-depth: 0

.github/workflows/macos-builds-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- x86_64-apple-darwin
2525
- aarch64-apple-darwin
2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828
with:
2929
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3030
fetch-depth: 0

.github/workflows/windows-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- target: aarch64-pc-windows-msvc # skip-pr skip-stable
3434
skip_tests: yes # skip-pr skip-stable
3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3838
with:
3939
fetch-depth: 0

.github/workflows/windows-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
mingwdir: mingw32
2929
mingw: https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3333
with:
3434
fetch-depth: 0

.github/workflows/windows-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
mingwdir: mingw32
3131
mingw: https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3535
with:
3636
fetch-depth: 0

ci/actions-templates/centos-fmt-clippy-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
with:
2727
# v2 defaults to a shallow checkout, but we need at least to the previous tag
2828
fetch-depth: 0

0 commit comments

Comments
 (0)