Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/setup-node from 3 to 4 #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/draft-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# We need to fetch the full repository in order to write complete
# release notes.
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: current
- name: Run Release Draft Script
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-on-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# Install all deps in preparation for creating a release.
# Unlike publishing, this is done using the normal NPM registry
# to download deps.
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: current
# TODO: We should check in a lockfile and use npm ci here instead.
Expand All @@ -29,7 +29,7 @@ jobs:
# Re-setup node using Wombat Dressing Room as the registry
# The actual NodeJS binaries and such are cached, so doing this
# twice isn't particularly expensive.
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: current
registry-url: https://wombat-dressing-room.appspot.com
Expand Down