From c07d8e5ddef02c558a0739deba7854a695a48b11 Mon Sep 17 00:00:00 2001 From: katsugtgz Date: Thu, 3 Sep 2026 16:23:06 +0700 Subject: [PATCH] ci: update setup-node and upload-artifact to current majors The other workflow files already use setup-node@v6+ and upload-artifact@v7. e2e-fullstack.yml and secret-scan.yml were left behind on v4. This bumps them so the whole workflow set stays on the same action majors. Inputs used (node-version, cache, cache-dependency-path, name, path, retention-days) are all supported in the new majors. --- .github/workflows/e2e-fullstack.yml | 4 ++-- .github/workflows/secret-scan.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-fullstack.yml b/.github/workflows/e2e-fullstack.yml index 041d77f0..cd71c695 100644 --- a/.github/workflows/e2e-fullstack.yml +++ b/.github/workflows/e2e-fullstack.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@v7 - name: Set up Node 20 - uses: actions/setup-node@v4 + uses: actions/setup-node@v7 with: node-version: '20' cache: 'npm' @@ -182,7 +182,7 @@ jobs: - name: Upload Playwright report if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: e2e-fullstack-report path: open-security-dashboard/playwright-report/ diff --git a/.github/workflows/secret-scan.yml b/.github/workflows/secret-scan.yml index cd76aa02..b02934b5 100644 --- a/.github/workflows/secret-scan.yml +++ b/.github/workflows/secret-scan.yml @@ -48,7 +48,7 @@ jobs: - name: Upload SARIF if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: gitleaks-sarif path: gitleaks.sarif