Skip to content

Commit

Permalink
ci: update github actions (#266)
Browse files Browse the repository at this point in the history
* ci: update actions/checkout to v3

* ci: update actions/cache to v3
  • Loading branch information
armujahid authored Nov 10, 2022
1 parent 5003099 commit 5a36848
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache node modules
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand All @@ -22,7 +22,7 @@ jobs:
node-version: 18

- name: Cache node modules
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down

0 comments on commit 5a36848

Please sign in to comment.