Update python:3.13-slim-bullseye Docker digest to 5ce5f0b #281
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup buildx | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3 | |
- name: Build container image | |
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # 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 }} |