Skip to content

Commit a32b3da

Browse files
committed
update actions
1 parent 44a0298 commit a32b3da

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313
- examples/analogRead_Scan_Differential/analogRead_Scan_Differential.ino
1414
- examples/analogReadContinuous_Scan/analogReadContinuous_Scan.ino
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Cache pip
18-
uses: actions/cache@v2
18+
uses: actions/cache@v3
1919
with:
2020
path: ~/.cache/pip
2121
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
2222
restore-keys: ${{ runner.os }}-pip-
2323
- name: Cache PlatformIO
24-
uses: actions/cache@v2
24+
uses: actions/cache@v3
2525
with:
2626
path: ~/.platformio
2727
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
2828
- name: Set up Python
29-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v3
3030
- name: Install PlatformIO
3131
run: |
3232
python -m pip install --upgrade pip
@@ -64,7 +64,7 @@ jobs:
6464
# platform-url: https://raw.githubusercontent.com/sparkfun/Arduino_Boards/master/IDE_Board_Manager/package_sparkfun_index.json
6565
# steps:
6666
# - name: Checkout
67-
# uses: actions/checkout@v2
67+
# uses: actions/checkout@v3
6868
# - name: Compile all examples
6969
# uses: ArminJo/arduino-test-compile@v3
7070
# with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Add version to doxyfile
1919
run: echo "PROJECT_NUMBER = $(git describe --tags --abbrev=0 | cut -c2-)" >> Doxyfile
2020
- name: Run Doxygen
21-
uses: mattnotmitt/doxygen-action@v1.9.4
21+
uses: mattnotmitt/doxygen-action@v1
2222
with:
2323
doxyfile-path: 'Doxyfile'
2424
- uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)