summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 16:06:52 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 16:06:52 +0200
commitf7780df1a9a9611163607526c596b220e7a0b3a0 (patch)
tree6de32ece694579ef20b9764465c23cfbe1168b93
parentAlways publish build scans (diff)
downloadseven-wonders-f7780df1a9a9611163607526c596b220e7a0b3a0.tar.gz
seven-wonders-f7780df1a9a9611163607526c596b220e7a0b3a0.tar.bz2
seven-wonders-f7780df1a9a9611163607526c596b220e7a0b3a0.zip
Upgrade Docker Build Push action to v4
-rw-r--r--.github/workflows/deploy.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 73cc0cda..2a9c384d 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -45,7 +45,7 @@ jobs:
password: ${{ secrets.GH_CONTAINER_REGISTRY_TOKEN }}
- name: Build and push to DockerHub and GitHub Container Registry
- uses: docker/build-push-action@v3
+ uses: docker/build-push-action@v4
with:
context: ./sw-server
push: true
bgstack15