Skip to content

Commit bcb2525

Browse files
authored
Merge pull request #1367 from dhalbert/update-some-actions-to-node-20
update to actions/checkout@v4 and actions/setup-python@v5
2 parents 06b18df + 7865926 commit bcb2525

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/adabot_cron.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@ jobs:
2929
GITHUB_CONTEXT: ${{ toJson(github) }}
3030
run: echo "$GITHUB_CONTEXT"
3131
- name: Set up Python 3.x
32-
uses: actions/setup-python@v4
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: 3.9
3535
- name: Versions
3636
run: |
3737
python3 --version
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
with:
40+
show-progress: false
4041
submodules: true
4142
- name: Install deps
4243
run: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
(cd awesome-circuitpython && git fetch origin main:main && git checkout main)
3737
- name: Set up Python 3.x
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: 3.x
4141
- uses: ruby/setup-ruby@v1

.github/workflows/images.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
13+
with:
14+
show-progress: false
15+
1316
- name: Compress Images
1417
id: calibre
1518
uses: calibreapp/image-actions@main

0 commit comments

Comments
 (0)