From 3245c3f270e8923d395b6b4478f1d395ec59700d Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Wed, 5 Mar 2025 14:06:36 -0500 Subject: [PATCH] chore: update GitHub Actions to use version 4 for checkout, setup-node, and upload-artifact --- .github/workflows/build-bundler.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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