Skip to content

Commit

Permalink
Updated github actions to use Node.js v20 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktor-podzigun committed Mar 19, 2024
1 parent 7526ea7 commit 46cff54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_bun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -23,7 +23,7 @@ jobs:
bun-version: "1.0.1"

- name: Cache Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
Expand Down

0 comments on commit 46cff54

Please sign in to comment.