Skip to content

Commit

Permalink
ci: upgrade github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Ilona Shishov <[email protected]>
  • Loading branch information
IlonaShishov committed Apr 16, 2024
1 parent a77364a commit ec5c678
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}

- name: Install node 18
uses: actions/setup-node@v3
- name: Install node 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: npm
registry-url: 'https://npm.pkg.github.com'
env:
Expand All @@ -42,6 +42,6 @@ jobs:
run: npm test -- --coverage

- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
name: Stage the project
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}

- name: Install node 18
uses: actions/setup-node@v3
- name: Install node 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: npm
registry-url: 'https://npm.pkg.github.com'
env:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
git push origin ${{ steps.bump.outputs.version }}
- name: Create a release
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down

0 comments on commit ec5c678

Please sign in to comment.