From ae6526bcbdcdbb4dd844f4a1b7fbc07965059390 Mon Sep 17 00:00:00 2001 From: Jaissica Date: Wed, 12 Nov 2025 14:52:08 -0500 Subject: [PATCH 1/2] chore: bump up upload-artifact version to v4 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 444f70b..686f3a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: run: npm run test - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs @@ -110,7 +110,7 @@ jobs: run: | npx semantic-release - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs From 615460ef869c4bf2b66f1c91e1c75ec27fe1a437 Mon Sep 17 00:00:00 2001 From: Jaissica Date: Wed, 12 Nov 2025 15:09:41 -0500 Subject: [PATCH 2/2] update actions/setup-node and actions/checkout to v4 --- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/release.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index a235929..4bb774a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -16,9 +16,9 @@ jobs: node-version: [18.x, 20.x, 22.x, 24.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 686f3a8..015f71a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,10 +20,10 @@ jobs: needs: confirm-public-repo-master-branch steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: NPM install - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x @@ -51,7 +51,7 @@ jobs: - confirm-public-repo-master-branch steps: - name: Checkout development branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: mparticle-integrations/mparticle-javascript-integration-facebook ref: development @@ -77,7 +77,7 @@ jobs: steps: - name: Checkout public master branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: master @@ -94,7 +94,7 @@ jobs: run: | git pull origin release/${{ github.run_number }} - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x @@ -126,7 +126,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout master branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 repository: ${{ github.repository }}