Skip to content

Commit 3719ce8

Browse files
committed
Upgrade GitHub actions to nodejs 20
1 parent 5d474d6 commit 3719ce8

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
os: [ubuntu-latest, macOS-latest, windows-latest]
2525
runs-on: ${{ matrix.os }}
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- name: Setup Java
2929
uses: oracle-actions/setup-java@v1
3030
with:
@@ -33,6 +33,8 @@ jobs:
3333
version: latest
3434
- name: Configure GPG key
3535
run: |
36+
gpg --version
37+
echo "Encoded key length: ${#GPG_SIGNING_KEY}"
3638
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
3739
env:
3840
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}

.github/workflows/test-devices.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/cache@v3
18+
- uses: actions/checkout@v4
19+
- uses: actions/cache@v4
2020
with:
2121
path: |
2222
~/.cache/pip
2323
~/.platformio/.cache
2424
key: ${{ runner.os }}-pio
25-
- uses: actions/setup-python@v4
25+
- uses: actions/setup-python@v5
2626
with:
2727
python-version: '3.9'
2828
- name: Install PlatformIO Core

0 commit comments

Comments
 (0)