fix: update docker push action version to v6 #65
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker Test Build | |
| on: [pull_request] | |
| jobs: | |
| apiary-docker-image: | |
| name: Apiary Docker Image Checks | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Ensure Apiary Docker Image Builds. | |
| uses: docker/build-push-action@v1.1.0 | |
| with: | |
| dockerfile: "Dockerfile" | |
| always_pull: true | |
| push: false |