Skip to content

Commit

Permalink
chore: migrate deprecated GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwiehl authored and Marcarrian committed Oct 30, 2024
1 parent 1c3c6b6 commit 10c96e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'issue/skeleton-angular/**'
workflow_dispatch:
env:
NODE_VERSION: 20.9.0
NODE_VERSION: 20.14.0
jobs:
install:
name: 'Installing NPM modules'
Expand All @@ -17,7 +17,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: 'Caching NPM modules if necessary'
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules-cache
with:
path: ./node_modules
Expand All @@ -43,12 +43,12 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: 'Restoring NPM modules from cache'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules
key: node_modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- run: ${{ matrix.app.cmd }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.app.name }}
path: dist/${{ matrix.app.name }}

0 comments on commit 10c96e8

Please sign in to comment.