Skip to content

Commit

Permalink
chore(CI): updates actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Eclion committed Dec 11, 2024
1 parent 0bfa69a commit 9fd5da2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '15.x'
- name: Cache Node.js modules
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '15.x'
- name: Cache Node.js modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
Expand All @@ -27,7 +27,8 @@ jobs:
- name: Lint, test and build release SDK
run: npm run ci
- name: Archive production artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build
path: build
path: build
overwrite: true

0 comments on commit 9fd5da2

Please sign in to comment.