Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebase_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down