Skip to content

Chore(deps): bump python from 3.12-slim to 3.13-slim #29

Chore(deps): bump python from 3.12-slim to 3.13-slim

Chore(deps): bump python from 3.12-slim to 3.13-slim #29

Workflow file for this run

---
name: pr
on:
pull_request
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- uses: docker/build-push-action@v6
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64, linux/arm64