Skip to content

Commit

Permalink
Update actions to Node 20 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
forkineye committed Feb 12, 2024
1 parent 1396c33 commit 8d809ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout ESPixelStick
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create version file
run: |
Expand All @@ -110,21 +110,21 @@ jobs:
echo "${GITHUB_REF#refs/*/v}" > firmware/VERSION
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand All @@ -144,13 +144,13 @@ jobs:
ls -al ./debug/${{ matrix.chip }}
- name: Upload Firmware Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Firmware Binaries
path: firmware

- name: Upload Debugging Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Debug Files
path: debug
Expand All @@ -160,15 +160,15 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout ESPixelStick
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set release flag
if: startsWith(github.ref, 'refs/tags/v')
run: |
echo "ESPS_RELEASE=''" >> $GITHUB_ENV
# Download firmware binary artifact
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: Firmware Binaries
path: dist/firmware
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
working-directory: dist

- name: Upload Release Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Release Archive
path: ${{ env.ARCHFILE }}
Expand All @@ -213,7 +213,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Release Archive
- name: Create Draft Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout ESPixelStick
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build doxygen pages
uses: mattnotmitt/doxygen-action@v1
Expand Down

0 comments on commit 8d809ae

Please sign in to comment.