Skip to content

Commit d2983c0

Browse files
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7504b18 commit d2983c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/django.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
docker_build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v3
88
- name: Build docker
99
run: docker-compose build
1010
- name: Type check
@@ -28,7 +28,7 @@ jobs:
2828
# needed because the postgres container does not provide a healthcheck
2929
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- name: Fetch history, because Heroku deploy fails otherwise.
3333
uses: actions/setup-python@v2
3434
with:
@@ -51,7 +51,7 @@ jobs:
5151
needs: build
5252
if: github.ref == 'refs/heads/master'
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555
with:
5656
fetch-depth: "0"
5757
- name: Deploy to Heroku

0 commit comments

Comments
 (0)