Skip to content

Commit

Permalink
chore: update GitHub Actions to use version 4 for checkout, setup-nod…
Browse files Browse the repository at this point in the history
…e, and upload-artifact
  • Loading branch information
danny-avila committed Mar 5, 2025
1 parent 5b6cba6 commit 3245c3f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
Expand Down

0 comments on commit 3245c3f

Please sign in to comment.