From 0aba60d4e42d5c1e3677374b4a7e964bf241d6c0 Mon Sep 17 00:00:00 2001 From: "serious-scaffold[bot]" <160990600+serious-scaffold[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 02:59:42 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v5 --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 34 +++++++++---------- .github/workflows/codeql.yml | 2 +- .github/workflows/semantic-release.yml | 2 +- ...deql == true %]codeql.yml[% endif %].jinja | 2 +- .../workflows/cd.yml.jinja | 2 +- .../workflows/ci.yml.jinja | 34 +++++++++---------- .../workflows/semantic-release.yml.jinja | 2 +- 8 files changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index db85aeeb..188c837c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -27,7 +27,7 @@ jobs: timeout-minutes: 15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }} ref: ${{ github.head_ref }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd6699d4..cd53fa17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: pre-commit: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -37,7 +37,7 @@ jobs: if: ${{ !cancelled() && ! failure() }} runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -84,7 +84,7 @@ jobs: name: check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -161,7 +161,7 @@ jobs: name: check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -239,7 +239,7 @@ jobs: name: check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -304,7 +304,7 @@ jobs: name: check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -372,7 +372,7 @@ jobs: name: check • sanitizers • ${{ matrix.sanitizer }} • ${{ matrix.build_type }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -419,7 +419,7 @@ jobs: name: check • valgrind • ${{ matrix.build_type }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -480,7 +480,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -528,7 +528,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -576,7 +576,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -624,7 +624,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -682,7 +682,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -730,7 +730,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -780,7 +780,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -826,7 +826,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -872,7 +872,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8809787b..ac9eaaf8 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index 2b83b390..0ce23f7c 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -40,7 +40,7 @@ jobs: echo "# :warning: GITHUB_TOKEN is used" >> $GITHUB_STEP_SUMMARY echo "The GITHUB_TOKEN is used instead of a bot token or PAT that will not emit the released publish event for triggering a released workflow." >> $GITHUB_STEP_SUMMARY - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ steps.bot_token.outputs.token || secrets.PAT || secrets.GITHUB_TOKEN }} diff --git a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/[% if use_codeql == true %]codeql.yml[% endif %].jinja b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/[% if use_codeql == true %]codeql.yml[% endif %].jinja index ed70600c..426d397e 100644 --- a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/[% if use_codeql == true %]codeql.yml[% endif %].jinja +++ b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/[% if use_codeql == true %]codeql.yml[% endif %].jinja @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/cd.yml.jinja b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/cd.yml.jinja index b5911dfd..ad0f3bf9 100644 --- a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/cd.yml.jinja +++ b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/cd.yml.jinja @@ -27,7 +27,7 @@ jobs: timeout-minutes: 15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: {{ '${{ secrets.GITHUB_TOKEN }}' }} ref: {{ '${{ github.head_ref }}' }} diff --git a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja index b950e9aa..2b375359 100644 --- a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja +++ b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja @@ -20,7 +20,7 @@ jobs: pre-commit: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -37,7 +37,7 @@ jobs: if: {{ '${{ !cancelled() && ! failure() }}' }} runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -88,7 +88,7 @@ jobs: name: {{ 'check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }}' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -169,7 +169,7 @@ jobs: name: {{ 'check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }}' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -251,7 +251,7 @@ jobs: name: {{ 'check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }}' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -320,7 +320,7 @@ jobs: name: {{ 'check • ${{ matrix.triplet }} • ${{ matrix.compiler }} • c++${{ matrix.std }} • ${{ matrix.build_type }}' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -392,7 +392,7 @@ jobs: name: {{ 'check • sanitizers • ${{ matrix.sanitizer }} • ${{ matrix.build_type }}' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -443,7 +443,7 @@ jobs: name: {{ 'check • valgrind • ${{ matrix.build_type }}' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -508,7 +508,7 @@ jobs: ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -560,7 +560,7 @@ jobs: ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -612,7 +612,7 @@ jobs: ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -668,7 +668,7 @@ jobs: ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -726,7 +726,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -774,7 +774,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -824,7 +824,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -870,7 +870,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -916,7 +916,7 @@ jobs: needs: [pre-commit, consistency] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/semantic-release.yml.jinja b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/semantic-release.yml.jinja index da3fe193..53fbabe5 100644 --- a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/semantic-release.yml.jinja +++ b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/semantic-release.yml.jinja @@ -40,7 +40,7 @@ jobs: echo "# :warning: GITHUB_TOKEN is used" >> $GITHUB_STEP_SUMMARY echo "The GITHUB_TOKEN is used instead of a bot token or PAT that will not emit the released publish event for triggering a released workflow." >> $GITHUB_STEP_SUMMARY - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 token: {{ '${{ steps.bot_token.outputs.token || secrets.PAT || secrets.GITHUB_TOKEN }}' }}