Skip to content

Commit 34932a7

Browse files
authored
Merge pull request #201 from tekktrik/dev/use-actions-checkout-v3
Upgrade cookiecutter (and its infrastructure) to actions/checkout@v3
2 parents 702be96 + ce888fb commit 34932a7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: |
3434
python3 --version
3535
- name: Checkout Current Repo
36-
uses: actions/checkout@v1
36+
uses: actions/checkout@v3
3737
with:
3838
submodules: true
3939
- name: Install deps

{{ cookiecutter.__dirname }}/.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
run: |
3131
python3 --version
3232
- name: Checkout Current Repo
33-
uses: actions/checkout@v1
33+
uses: actions/checkout@v3
3434
with:
3535
submodules: true
3636
- name: Checkout tools repo
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838
with:
3939
repository: adafruit/actions-ci-circuitpython-libs
4040
path: actions-ci

{{ cookiecutter.__dirname }}/.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
run: |
3333
python3 --version
3434
- name: Checkout Current Repo
35-
uses: actions/checkout@v1
35+
uses: actions/checkout@v3
3636
with:
3737
submodules: true
3838
- name: Checkout tools repo
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040
with:
4141
repository: adafruit/actions-ci-circuitpython-libs
4242
path: actions-ci
@@ -60,7 +60,7 @@ jobs:
6060
upload-pypi:
6161
runs-on: ubuntu-latest
6262
steps:
63-
- uses: actions/checkout@v1
63+
- uses: actions/checkout@v3
6464
- name: Check For pyproject.toml
6565
id: need-pypi
6666
run: |

0 commit comments

Comments
 (0)