-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update checkout and setup-node to v4 to see if that fixes issue
- Loading branch information
1 parent
2d238e3
commit adeb8bd
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 # https://github.com/actions/checkout | ||
uses: actions/checkout@v4 # https://github.com/actions/checkout | ||
with: | ||
fetch-depth: 0 # https://github.com/actions/checkout/issues/217 | ||
token: ${{ secrets.GH_TOKEN_LERNA }} # https://github.com/lerna/lerna/issues/1957 | ||
|
@@ -23,7 +23,7 @@ jobs: | |
git config user.email [email protected] | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 # https://github.com/actions/setup-node | ||
uses: actions/setup-node@v4 # https://github.com/actions/setup-node | ||
with: | ||
node-version: 18 | ||
registry-url: https://registry.npmjs.org | ||
|