diff --git a/.github/workflows/integration-tests-azure.yml b/.github/workflows/integration-tests-azure.yml index a86072b4..a5c8c040 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@v5 - 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..30d287fa 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@v5 - 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 20c2739d..9d40e347 100644 --- a/.github/workflows/release-version.yml +++ b/.github/workflows/release-version.yml @@ -11,7 +11,7 @@ jobs: name: Release new version runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 05a85a7f..9c773b11 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@v5 - name: Install dependencies run: pip install -r dev_requirements.txt