From 745bb7f4f068c2522ac2c7009d60e32ec859f0f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 01:09:55 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/bleeding.yml | 2 +- .github/workflows/ci.yml | 8 ++++---- .github/workflows/docker.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/recompile-requirements.yml | 2 +- .github/workflows/release.yml | 6 +++--- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml index 98c43dc7b..e2f7b2fc0 100644 --- a/.github/workflows/bleeding.yml +++ b/.github/workflows/bleeding.yml @@ -33,7 +33,7 @@ jobs: - /home/runner/work/_temp/:/home/runner/work/_temp/ options: --privileged --tty steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - name: Set up problem matchers diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a59e5235..00e3f0f80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - testenv: actionlint - testenv: package steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - uses: actions/cache@v4 @@ -110,7 +110,7 @@ jobs: - /home/runner/work/_temp/:/home/runner/work/_temp/ options: --privileged --tty steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - name: Set up problem matchers @@ -217,7 +217,7 @@ jobs: python: "3.13" runs-on: "${{ matrix.os }}" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - uses: actions/cache@v4 @@ -285,7 +285,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false - name: Initialize CodeQL diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b83951c00..4707d5953 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -18,7 +18,7 @@ jobs: - archlinux-webengine-unstable-qt6 - archlinux-webengine-qt6 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: '3.x' diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 86b76ca20..131f30b2b 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -37,7 +37,7 @@ jobs: runs-on: "${{ matrix.os }}" timeout-minutes: 45 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - name: Set up Python diff --git a/.github/workflows/recompile-requirements.yml b/.github/workflows/recompile-requirements.yml index 74cce17e0..05ab5f6ba 100644 --- a/.github/workflows/recompile-requirements.yml +++ b/.github/workflows/recompile-requirements.yml @@ -18,7 +18,7 @@ jobs: timeout-minutes: 20 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - name: Set up Python 3.9 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5a64ff02..6f5c05073 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: console.log(`sorted: ${sorted}`); return sorted.at(-1); result-encoding: string - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: @@ -75,7 +75,7 @@ jobs: git config --global user.name "qutebrowser bot" git config --global user.email "bot@qutebrowser.org" - name: Switch to release branch - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ steps.find-branch.outputs.result }} - name: Import GPG Key @@ -136,7 +136,7 @@ jobs: permissions: contents: write # To upload release artifacts steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: v${{ needs.prepare.outputs.version }} - name: Set up Python