Skip to content

Commit

Permalink
chore(ci): upgrade actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Apr 13, 2024
1 parent 09b3d30 commit 0944b77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE }}
registry-url: https://registry.npmjs.org/
Expand All @@ -30,7 +30,7 @@ jobs:
run: npm install -g npm@latest

- name: Cache .angular and node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-step
with:
key: cache-ubuntu-latest-node${{ env.NODE }}-${{ hashFiles('package-lock.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org/
Expand All @@ -45,7 +45,7 @@ jobs:
run: npm install -g npm@latest

- name: Cache .angular and node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-step
with:
key: cache-${{ matrix.os }}-node${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
Expand Down

0 comments on commit 0944b77

Please sign in to comment.