diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml index 352be6621..5f6222034 100644 --- a/.github/workflows/bundlewatch.yml +++ b/.github/workflows/bundlewatch.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'SKIP CI')" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 20.x diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6939b76c2..8ced3c304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - latest react: [18] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 @@ -40,7 +40,7 @@ jobs: react: [18] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Run visual tests (node ${{ matrix.node-version }}) run: make ci diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 608c20afb..0fd50a5a8 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50e0f4b5b..5c959b5af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: # Setup the git repo & Node environemnt. # - name: Checkout branch (${{ github.ref }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false # install breaks with persistant creds!