Skip to content

Commit 3277ac3

Browse files
ci: update actions (#4464)
* ci: update actions * ci: update actions * ci: update actions * ci: use py3.9 for docs
1 parent 93ce9b0 commit 3277ac3

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docs
1+
name: Documentation
22

33
on: [push, pull_request]
44

@@ -7,13 +7,13 @@ jobs:
77
name: Build Docs
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
with:
1212
submodules: "recursive"
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
16-
python-version: 3.7
16+
python-version: 3.9
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: Save artifact
4242
if: ${{ github.event_name == 'push' }}
43-
uses: actions/upload-artifact@v2
43+
uses: actions/upload-artifact@v3
4444
with:
4545
name: docs
4646
path: ./docs.tar.gz
@@ -57,7 +57,7 @@ jobs:
5757
if: ${{ github.event_name == 'push' }}
5858
steps:
5959
- name: Download artifact
60-
uses: actions/download-artifact@v2
60+
uses: actions/download-artifact@v3
6161
with:
6262
name: docs
6363
- name: Unpack artifact
@@ -78,7 +78,7 @@ jobs:
7878
fi
7979
- name: Checkout latest Docs
8080
continue-on-error: true
81-
uses: actions/checkout@v2
81+
uses: actions/checkout@v3
8282
with:
8383
repository: ${{ env.DOCS_REPO }}
8484
path: ${{ env.DOCS_DIR }}

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
submodules: "recursive"
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: "3.9"
2626

.github/workflows/projects.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ jobs:
4545
submodules: "recursive"
4646

4747
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v3
48+
uses: actions/setup-python@v4
4949
with:
5050
python-version: 3.9
5151

5252
- name: Install PlatformIO
5353
run: pip install -U .
5454

5555
- name: Check out ${{ matrix.project.repository }}
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v3
5757
with:
5858
submodules: "recursive"
5959
repository: ${{ matrix.project.repository }}

0 commit comments

Comments
 (0)