Skip to content

Commit

Permalink
Upgrade GitHub actions to nodejs 20
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Apr 19, 2024
1 parent 5d474d6 commit 3719ce8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Java
uses: oracle-actions/setup-java@v1
with:
Expand All @@ -33,6 +33,8 @@ jobs:
version: latest
- name: Configure GPG key
run: |
gpg --version
echo "Encoded key length: ${#GPG_SIGNING_KEY}"
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-devices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install PlatformIO Core
Expand Down

0 comments on commit 3719ce8

Please sign in to comment.