chore: bump astral-sh/setup-uv from 7.6.0 to 8.0.0 #118
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: Build and Test Docker Image | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| should-test-docker-build: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| name: Check if `test_docker_build` should run | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Check if Dockerfile or docker-build action have changed | |
| uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 | |
| id: docker-changes | |
| with: | |
| filters: | | |
| docker: | |
| - 'Dockerfile' | |
| - '.dockerignore' | |
| workflow: | |
| - ./.github/actions/docker-build/action.yml | |
| - ./.github/workflows/build-test-docker.yml | |
| outputs: | |
| docker: ${{ steps.docker-changes.outputs.docker }} | |
| workflow: ${{ steps.docker-changes.outputs.workflow }} | |
| trigger-test-docker-build: | |
| needs: [should-test-docker-build] | |
| name: Trigger test Docker build | |
| if: (needs.should-test-docker-build.outputs.workflow == 'true' || needs.should-test-docker-build.outputs.docker == 'true') | |
| uses: ./.github/workflows/build-test-docker.yml | |
| with: | |
| image-tag: "pr-${{ github.event.pull_request.number }}" |