We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6cba6 commit 3245c3fCopy full SHA for 3245c3f
.github/workflows/build-bundler.yml
@@ -15,15 +15,15 @@ jobs:
15
build:
16
runs-on: ubuntu-latest
17
permissions:
18
- contents: read
+ contents: write # Needed for creating releases
19
packages: write
20
21
steps:
22
- name: Checkout repository
23
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
24
25
- name: Setup Node.js
26
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
27
with:
28
node-version: '16'
29
cache: 'yarn'
@@ -45,9 +45,9 @@ jobs:
45
cd ..
46
echo "Created bundler.zip ($(du -h bundler.zip | cut -f1) in size)"
47
48
- # Upload the zip as an artifact
+ # Upload the zip as an artifact - UPDATED TO V4
49
- name: Upload Zip Archive
50
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
51
52
name: bundler-files
53
path: bundler.zip
0 commit comments