From e8c6474fdb3689caffd82cef8b5b2563cf447c9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 09:01:48 +0000 Subject: [PATCH] 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/django.yml | 6 +++--- .github/workflows/rebase_dependencies.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 9a5ced11..42a6d1f8 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -4,7 +4,7 @@ jobs: docker_build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Build docker run: docker compose build - name: Run ruff @@ -28,7 +28,7 @@ jobs: # needed because the postgres container does not provide a healthcheck options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: 3.12.4 @@ -59,7 +59,7 @@ jobs: # The project is currently hosted on render.com if: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: "0" - name: Deploy to Heroku diff --git a/.github/workflows/rebase_dependencies.yml b/.github/workflows/rebase_dependencies.yml index 0f0c5b39..11fc1ea4 100644 --- a/.github/workflows/rebase_dependencies.yml +++ b/.github/workflows/rebase_dependencies.yml @@ -8,7 +8,7 @@ jobs: name: Rebase `dependencies` with `master` runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # otherwise, you will fail to push refs to dest repo ref: dependencies