diff --git a/.github/workflows/build-bundler.yml b/.github/workflows/build-bundler.yml index db78eb712..347a12b1d 100644 --- a/.github/workflows/build-bundler.yml +++ b/.github/workflows/build-bundler.yml @@ -15,15 +15,15 @@ jobs: build: runs-on: ubuntu-latest permissions: - contents: read + contents: write # Needed for creating releases packages: write steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '16' cache: 'yarn' @@ -45,9 +45,9 @@ jobs: cd .. echo "Created bundler.zip ($(du -h bundler.zip | cut -f1) in size)" - # Upload the zip as an artifact + # Upload the zip as an artifact - UPDATED TO V4 - name: Upload Zip Archive - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bundler-files path: bundler.zip