Skip to content

Commit 3245c3f

Browse files
committed
chore: update GitHub Actions to use version 4 for checkout, setup-node, and upload-artifact
1 parent 5b6cba6 commit 3245c3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-bundler.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
permissions:
18-
contents: read
18+
contents: write # Needed for creating releases
1919
packages: write
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Setup Node.js
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
with:
2828
node-version: '16'
2929
cache: 'yarn'
@@ -45,9 +45,9 @@ jobs:
4545
cd ..
4646
echo "Created bundler.zip ($(du -h bundler.zip | cut -f1) in size)"
4747
48-
# Upload the zip as an artifact
48+
# Upload the zip as an artifact - UPDATED TO V4
4949
- name: Upload Zip Archive
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4
5151
with:
5252
name: bundler-files
5353
path: bundler.zip

0 commit comments

Comments
 (0)