From c82810a1d504a563544f299585b332fe44ed71ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 16:43:45 +0000 Subject: [PATCH] Bump docker/build-push-action from 4 to 5 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docker_deployment.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker_deployment.yml b/.github/workflows/docker_deployment.yml index 1d9f63619..47f2f693a 100644 --- a/.github/workflows/docker_deployment.yml +++ b/.github/workflows/docker_deployment.yml @@ -42,7 +42,7 @@ jobs: name: Build and push stable release if: github.event_name == 'release' id: docker_build_release - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: push: true tags: molpopgen/fwdpy11:latest, molpopgen/fwdpy11:${{ github.event.release.tag_name }} @@ -52,7 +52,7 @@ jobs: name: Build and push from main if: github.ref == 'refs/heads/main' id: docker_bfild_main - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: push: true tags: molpopgen/fwdpy11:latest @@ -62,7 +62,7 @@ jobs: name: Build image if: github.event_name == 'pull_request' id: docker_build_pull_request - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: push: false tags: molpopgen/fwdpy11:stable