Deps: Bump the python-packages group with 4 updates #523
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 & Push Container Images | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "v*" | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| inputs: | |
| ref-name: | |
| type: string | |
| description: "The ref to build a container image from. For example a tag v23.0.0." | |
| required: true | |
| jobs: | |
| build: | |
| name: Build and Push to Greenbone Registry | |
| uses: greenbone/workflows/.github/workflows/container-build-push-2nd-gen.yml@main | |
| with: | |
| build-docker-file: .docker/Dockerfile | |
| image-url: community/gvm-tools | |
| image-labels: | | |
| org.opencontainers.image.vendor=Greenbone | |
| org.opencontainers.image.documentation=https://greenbone.github.io/gvm-tools/ | |
| org.opencontainers.image.base.name=debian/stable-slim | |
| ref-name: ${{ inputs.ref-name }} | |
| secrets: inherit |