Update python:3.12-slim-bullseye Docker digest to 37e5778 #230
Workflow file for this run
This file contains 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: Verify | |
on: | |
pull_request: | |
jobs: | |
verify: | |
name: Success | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Setup buildx | |
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3 | |
- name: Build container image | |
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6 | |
with: | |
context: . | |
file: Dockerfile | |
load: true | |
provenance: false | |
push: false | |
tags: github-bot-signed-commit:${{ github.sha }} | |
target: verify | |
- name: Verify container image | |
shell: bash | |
run: | | |
docker run --rm github-bot-signed-commit:${{ github.sha }} |