From 5ff76607614d2369577b4214bd3cfdd008b7e0d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:07:23 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integration-tests-azure.yml | 2 +- .github/workflows/publish-docker.yml | 2 +- .github/workflows/release-version.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-tests-azure.yml b/.github/workflows/integration-tests-azure.yml index a86072b4..20f389d4 100644 --- a/.github/workflows/integration-tests-azure.yml +++ b/.github/workflows/integration-tests-azure.yml @@ -53,7 +53,7 @@ jobs: logging.error("Error occurred while connecting to the database.", exc_info=True) EOF - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install dependencies run: pip install -r dev_requirements.txt diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index 4ac40049..fd326871 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -22,7 +22,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Log in to the Container registry uses: docker/login-action@v3.3.0 diff --git a/.github/workflows/release-version.yml b/.github/workflows/release-version.yml index 1286bf57..1156dd34 100644 --- a/.github/workflows/release-version.yml +++ b/.github/workflows/release-version.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-python@v5 with: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 05a85a7f..7488e26e 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -28,7 +28,7 @@ jobs: password: ${{ secrets.github_token }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install dependencies run: pip install -r dev_requirements.txt