Skip to content

Commit e5395de

Browse files
Bump actions/checkout from 2 to 3 (#14540)
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]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent dafa3e8 commit e5395de

14 files changed

+24
-24
lines changed

.github/workflows/ci-app-cloud-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- commands_and_api
3636
timeout-minutes: 35
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939
- uses: actions/setup-python@v4
4040
with:
4141
python-version: "3.8"

.github/workflows/ci-app-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
timeout-minutes: 10
3434

3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
- name: Set up Python ${{ matrix.python-version }}
3838
uses: actions/setup-python@v4
3939
with:

.github/workflows/ci-app-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
timeout-minutes: 20
3131

3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
- name: Set up Python ${{ matrix.python-version }}
3535
uses: actions/setup-python@v4
3636
with:

.github/workflows/ci-lite-test-full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 40
3939

4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242

4343
- name: Set up Python ${{ matrix.python-version }}
4444
uses: actions/setup-python@v4

.github/workflows/ci-pkg-install.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: [3.8] # , 3.9
3939

4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
- uses: actions/setup-python@v4
4343
with:
4444
python-version: ${{ matrix.python-version }}
@@ -74,7 +74,7 @@ jobs:
7474
python-version: [3.8] # , 3.9
7575

7676
steps:
77-
- uses: actions/checkout@v2
77+
- uses: actions/checkout@v3
7878
- uses: actions/setup-python@v4
7979
with:
8080
python-version: ${{ matrix.python-version }}
@@ -106,7 +106,7 @@ jobs:
106106
python-version: [3.8] # , 3.9
107107

108108
steps:
109-
- uses: actions/checkout@v2
109+
- uses: actions/checkout@v3
110110
- uses: actions/setup-python@v4
111111
with:
112112
python-version: ${{ matrix.python-version }}

.github/workflows/ci-pytorch-test-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Workaround for https://github.com/actions/checkout/issues/760
3434
run: git config --global --add safe.directory /__w/lightning/lightning
3535

36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737

3838
- name: Get changed files
3939
id: changed-files

.github/workflows/ci-pytorch-test-full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
timeout-minutes: 40
3636

3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939

4040
- name: Get changed files
4141
id: changed-files

.github/workflows/ci-pytorch-test-slow.yml

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

3333
timeout-minutes: 20
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636

3737
- uses: actions/setup-python@v4
3838
with:

.github/workflows/docs-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
pkg: ["app", "pytorch"] # TODO: , "lit"
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
with:
2525
submodules: true
2626
- uses: actions/setup-python@v4
@@ -71,7 +71,7 @@ jobs:
7171
matrix:
7272
pkg: ["app", "pytorch", "lit"]
7373
steps:
74-
- uses: actions/checkout@v2
74+
- uses: actions/checkout@v3
7575
with:
7676
submodules: true
7777
# lfs: true

.github/workflows/docs-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-20.04
1010
steps:
1111
- name: Checkout 🛎️
12-
uses: actions/checkout@v2
13-
# If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
12+
uses: actions/checkout@v3
13+
# If you're using actions/checkout@v3 you must set persist-credentials to false in most cases for the deployment to work correctly.
1414
with:
1515
persist-credentials: false
1616
- uses: actions/setup-python@v4

0 commit comments

Comments
 (0)