Skip to content

Commit

Permalink
MAINT: Fix failing gitpod build.
Browse files Browse the repository at this point in the history
The gitpod builds have begun failing, this PR updates the
`build-push-action` command to version 4 to check if that fixes the
problem. Note the the build only runs on merge, so the PR tests won't
help, but a version update is probably a good idea anyway. See numpygh-23320
for more information.
  • Loading branch information
charris committed Mar 3, 2023
1 parent e57ee3f commit 9902663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: "."
file: "./tools/gitpod/Dockerfile"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: "."
file: "./tools/gitpod/gitpod.Dockerfile"
Expand Down

0 comments on commit 9902663

Please sign in to comment.