Skip to content

Commit

Permalink
chore: bump github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Dec 27, 2023
1 parent 7ec6567 commit cb28915
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install NodeJS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: https://registry.npmjs.org
Expand All @@ -27,7 +27,7 @@ jobs:

- name: Cache build context
id: cache-node
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.npm
Expand All @@ -50,7 +50,7 @@ jobs:
run: tar -zcvf ./release-${{ steps.current_tag.outputs.tag }}.tar.gz dist/

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.current_tag.outputs.tag }} Release
path: ./release-${{ steps.current_tag.outputs.tag }}.tar.gz
Expand All @@ -72,7 +72,7 @@ jobs:

steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build.outputs.tag }} Release

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install NodeJS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20.x

Expand All @@ -20,7 +20,7 @@ jobs:

- name: Cache build context
id: cache-node
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.npm
Expand Down

0 comments on commit cb28915

Please sign in to comment.