Skip to content

Commit 394b05e

Browse files
authored
Upgrade to latest versions of github actions packages (#736)
1 parent ffb6502 commit 394b05e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: cp $(bazel info ${{ matrix.cpu_flag }} bazel-bin)/cmd/ibazel/ibazel_/ibazel${{ matrix.ext }} ${{ matrix.artifact }}
6464

6565
- name: Upload binary
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: ${{ matrix.name }}
6969
path: ${{ matrix.artifact }}
@@ -91,7 +91,7 @@ jobs:
9191
with:
9292
fetch-depth: 0
9393

94-
- uses: actions/download-artifact@v3
94+
- uses: actions/download-artifact@v4
9595
with:
9696
path: ./npm-staging/bin
9797

@@ -112,7 +112,7 @@ jobs:
112112
bazel run --config="release" "//release/npm" -- "${PWD}/CONTRIBUTORS" > "npm-staging/package.json"
113113
114114
# Setup .npmrc file to publish to npm
115-
- uses: actions/setup-node@v3
115+
- uses: actions/setup-node@v4
116116
with:
117117
node-version: '22.x'
118118
registry-url: 'https://registry.npmjs.org'
@@ -122,7 +122,7 @@ jobs:
122122
env:
123123
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
124124
working-directory: ./npm-staging
125-
# The setup-node@v3 step created an .npmrc file, but we changed directories. Copy it first.
125+
# The setup-node step created an .npmrc file, but we changed directories. Copy it first.
126126
run: |
127127
npm config list
128128
echo -n "Publishing to NPM as "

0 commit comments

Comments
 (0)