From 32691fd20e97b0e605b98b90b8cc83d45e3fa980 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 18:07:54 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/_move-major-branch.yml | 2 +- .github/workflows/_publish.yml | 2 +- .github/workflows/bump-version.yml | 2 +- .github/workflows/ci-uv.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/publish-docker-image.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/tag.yml | 2 +- .github/workflows/update-badges.yml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/_move-major-branch.yml b/.github/workflows/_move-major-branch.yml index 4ee8268..d7fc365 100644 --- a/.github/workflows/_move-major-branch.yml +++ b/.github/workflows/_move-major-branch.yml @@ -31,7 +31,7 @@ jobs: steps: # 1) Check out repo so we can move branches - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.SERVICE_TOKEN }} diff --git a/.github/workflows/_publish.yml b/.github/workflows/_publish.yml index 783057e..a4912c1 100644 --- a/.github/workflows/_publish.yml +++ b/.github/workflows/_publish.yml @@ -27,7 +27,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # on push this is already the tag ref; on dispatch you must choose # the tag in the UI so github.ref is the tag diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 6caa28a..ed948e8 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.default-branch }} fetch-depth: 0 diff --git a/.github/workflows/ci-uv.yml b/.github/workflows/ci-uv.yml index 5ca74cf..d33749d 100644 --- a/.github/workflows/ci-uv.yml +++ b/.github/workflows/ci-uv.yml @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12fb3e7..d34b03c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: name: Run CI Tasks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python ${{ inputs.python-version }} uses: actions/setup-python@v5 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e0a4867..df71886 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.SERVICE_TOKEN }} diff --git a/.github/workflows/publish-docker-image.yml b/.github/workflows/publish-docker-image.yml index 3557fa2..9de816b 100644 --- a/.github/workflows/publish-docker-image.yml +++ b/.github/workflows/publish-docker-image.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.default_branch }} - name: Set branch tag diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d974955..78680c0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # on push this is already the tag ref; on dispatch you must choose # the tag in the UI so github.ref is the tag diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index d28eab0..017e05d 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -24,7 +24,7 @@ jobs: new_version: ${{ steps.output_version.outputs.new_version }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: ref: ${{ inputs.default_branch }} fetch-depth: 0 diff --git a/.github/workflows/update-badges.yml b/.github/workflows/update-badges.yml index 1d4230a..8c0ec14 100644 --- a/.github/workflows/update-badges.yml +++ b/.github/workflows/update-badges.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-22.04 continue-on-error: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.default-branch }} fetch-depth: 0