Update python:3.13-slim-bullseye Docker digest to e28e786 #296
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@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # 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 }} |