From 00cff5ccc3b9a6f5bcde16918ede9ef50cb85612 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 20:23:41 +0000 Subject: [PATCH] Deps: Update GH Action Deps --- .github/workflows/biome-lint.yml | 2 +- .github/workflows/build-push.yml | 6 +++--- .github/workflows/commit-lint.yml | 4 ++-- .github/workflows/fossa.yml | 2 +- .github/workflows/lighthouse.yml | 6 +++--- .github/workflows/mend.yml | 2 +- .github/workflows/nginx-documentation-build.yml | 2 +- .github/workflows/playwright.yml | 6 +++--- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/biome-lint.yml b/.github/workflows/biome-lint.yml index 14f9157c..03448e50 100644 --- a/.github/workflows/biome-lint.yml +++ b/.github/workflows/biome-lint.yml @@ -15,7 +15,7 @@ jobs: steps: # Checkout the repository so the workflow has access to the code - name: Checkout code - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # Run the run-biome.sh script - name: Run run-biome.sh diff --git a/.github/workflows/build-push.yml b/.github/workflows/build-push.yml index 6fb50396..8ffd3f4a 100644 --- a/.github/workflows/build-push.yml +++ b/.github/workflows/build-push.yml @@ -37,9 +37,9 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: ref: ${{ github.event.workflow_run.head_branch }} - - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 + - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 with: - node-version: 22 + node-version: 24 - name: Installing packages run: cd performance && npm ci - name: Generating lighthouse reports for PR... @@ -116,7 +116,7 @@ jobs: fi fi done - - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 if: ${{ !cancelled() }} with: name: lighthouse-reports-pr diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 61dc9d65..909aaa1e 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check Commit Messages - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 with: script: | const excludedBotIds = [ @@ -86,7 +86,7 @@ jobs: } - name: Create PR comment on bad commit message - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 if: ${{ failure() && !github.event.pull_request.draft }} with: script: | diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index 350286c9..925f65d6 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -22,7 +22,7 @@ jobs: if: ${{ github.event.repository.fork == false }} steps: - name: Checkout Repository - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Scan uses: fossas/fossa-action@93a52ecf7c3ac7eb40f5de77fd69b1a19524de94 # v1.5.0 diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index e8f4d7be..ad238c9d 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -18,9 +18,9 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: ref: ${{ github.event.workflow_run.head_branch }} - - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 + - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 with: - node-version: 18 + node-version: 24 - name: Installing packages run: cd performance && npm ci - name: Get PR number being merged @@ -41,7 +41,7 @@ jobs: GITHUB_PR_NUMBER: ${{ env.GITHUB_PR_NUMBER }} run: | node performance/lighthouse-script.js - - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 with: name: lighthouse-reports-main path: lighthouse-reports/main-report.json diff --git a/.github/workflows/mend.yml b/.github/workflows/mend.yml index 38fecbc5..81f3f39a 100644 --- a/.github/workflows/mend.yml +++ b/.github/workflows/mend.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout Repository - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: ref: ${{ inputs.branch && inputs.branch || github.ref }} diff --git a/.github/workflows/nginx-documentation-build.yml b/.github/workflows/nginx-documentation-build.yml index 40923668..7f17236a 100644 --- a/.github/workflows/nginx-documentation-build.yml +++ b/.github/workflows/nginx-documentation-build.yml @@ -21,7 +21,7 @@ jobs: git clone https://github.com/nginx/documentation.git docs - name: Setup Go - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 + uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 with: go-version: ">=1.23" diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 2b520c06..1039caa1 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -18,7 +18,7 @@ jobs: steps: # Checkout the repository so the workflow has access to the code - name: Checkout code - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Setup Hugo uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0 with: @@ -34,7 +34,7 @@ jobs: echo "Playwright tests failed. Please view the Playwright report to see full error." exit 1 fi - - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 id: artifact-upload if: ${{ !cancelled() && failure() && steps.test-ui.conclusion == 'failure' }} with: @@ -42,7 +42,7 @@ jobs: path: tests/playwright-report/ retention-days: 3 - name: Comment on PR with Playwright report - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 if: ${{ failure() }} with: script: |