From e4a81ebe08b94f9ae114a9d26dd84a5d15eca632 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 09:25:40 +0200 Subject: [PATCH] Bump actions/checkout from 4 to 5 in the all group (#3373) --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/containers.yml | 2 +- .github/workflows/pypi-release.yml | 2 +- .github/workflows/test-container-build.yml | 2 +- .github/workflows/test-only.yml | 2 +- .github/workflows/test-stack-reusable-workflow.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5394090d..6ec8cfe0 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index d079f28b..b5002e2b 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -39,7 +39,7 @@ jobs: # Or if we are in a tagged release scenario. if: ${{ github.event.workflow_run.conclusion == 'success' }} || ${{ github.event.release.tag_name }} != '' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python 3.11 uses: actions/setup-python@v5 with: diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 46fad5b2..8dd3bac0 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/test-container-build.yml b/.github/workflows/test-container-build.yml index f9395df2..5aeefbd2 100644 --- a/.github/workflows/test-container-build.yml +++ b/.github/workflows/test-container-build.yml @@ -46,7 +46,7 @@ jobs: - platform: linux/arm64 dockerfile: ./.github/test/Dockerfile-alpine steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python 3.11 uses: actions/setup-python@v5 with: diff --git a/.github/workflows/test-only.yml b/.github/workflows/test-only.yml index db5c3fbd..3cca6642 100644 --- a/.github/workflows/test-only.yml +++ b/.github/workflows/test-only.yml @@ -7,7 +7,7 @@ jobs: lint-code: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Lint with Ruff run: | pip install ruff diff --git a/.github/workflows/test-stack-reusable-workflow.yml b/.github/workflows/test-stack-reusable-workflow.yml index c5b1af95..148565de 100644 --- a/.github/workflows/test-stack-reusable-workflow.yml +++ b/.github/workflows/test-stack-reusable-workflow.yml @@ -20,7 +20,7 @@ jobs: env: PYTHON_VERSION: ${{ inputs.python-version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # Mainly just for link/flake8 - name: Set up Python ${{ env.PYTHON_VERSION }}