From 11a4f719605c1d4641c43ab9c209c438a37b3a2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Oct 2022 17:17:59 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. - [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/v2...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/docker-publish.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2826b91..64eedfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout Code Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Set up Python 3.8 uses: actions/setup-python@v2.2.2 @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout Code Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Build the Stack run: docker-compose -f local.yml build diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index ebcf72d..1428cdb 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -18,7 +18,7 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: Build django image run: docker build . --file ./compose/production/django/Dockerfile --tag $DJANGO_IMAGE_NAME @@ -46,7 +46,7 @@ jobs: # if: github.event_name == 'push' # # steps: -# - uses: actions/checkout@v2 +# - uses: actions/checkout@v3.1.0 # # - name: Build postgres image # run: docker build . --file ./compose/production/postgres/Dockerfile --tag $DB_IMAGE_NAME @@ -80,7 +80,7 @@ jobs: # if: github.event_name == 'push' # # steps: -# - uses: actions/checkout@v2 +# - uses: actions/checkout@v3.1.0 # # - name: Build traefik image # run: docker build . --file ./compose/production/traefik/Dockerfile --tag $ROUTER_IMAGE_NAME