diff --git a/.github/workflows/branch-syncer.yml b/.github/workflows/branch-syncer.yml index f16c2df..0295459 100644 --- a/.github/workflows/branch-syncer.yml +++ b/.github/workflows/branch-syncer.yml @@ -22,7 +22,7 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.SRGH_TOKEN }} diff --git a/.github/workflows/codeql-scanner.yml b/.github/workflows/codeql-scanner.yml index 5648328..fd3c964 100644 --- a/.github/workflows/codeql-scanner.yml +++ b/.github/workflows/codeql-scanner.yml @@ -58,7 +58,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Add any setup steps before running the `github/codeql-action/init` action. # This includes steps like installing compilers or runtimes (`actions/setup-node` diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index d9bbbfd..b57db77 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Lint commit @@ -30,7 +30,7 @@ jobs: pull-requests: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js uses: actions/setup-node@v4 with: diff --git a/.github/workflows/pr-auto-approver.yml b/.github/workflows/pr-auto-approver.yml index b559dfd..4bc96ab 100644 --- a/.github/workflows/pr-auto-approver.yml +++ b/.github/workflows/pr-auto-approver.yml @@ -19,7 +19,7 @@ jobs: id: dependabot-metadata uses: dependabot/fetch-metadata@v2 - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Approve dependabot for non-major updates only if: steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' run: | diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml index f032f69..1e81c9b 100644 --- a/.github/workflows/releaser.yml +++ b/.github/workflows/releaser.yml @@ -25,7 +25,7 @@ jobs: id-token: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Test: https://github.com/semantic-release/semantic-release/discussions/2557