Skip to content

Commit cf33abe

Browse files
committed
update to actions/checkout@v4 and actions/setup-python@v5
1 parent d3945b1 commit cf33abe

3 files changed

Lines changed: 7 additions & 5 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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v3
20-
19+
uses: actions/checkout@v4
20+
with:
21+
show-progress: false
2122
- name: Compress Images
2223
uses: calibreapp/image-actions@main
2324
with:

0 commit comments

Comments
 (0)