Bump docker/login-action from 3.6.0 to 3.7.0 #74
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: "PR - Test Docker Build" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # This workflow builds a docker image for every pull request, to | |
| # confirm that the changes will still at least build even if the | |
| # OP has not tried it themselves or configured their fork to use | |
| # the included repos | |
| on: | |
| pull_request: | |
| jobs: | |
| test-pr-build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Docker buildx | |
| uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 | |
| - name: Build Docker image | |
| id: build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: false | |
| context: . | |
| platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
| tags: automatic-ripping-machine:pr${{ github.event.number }} |