chore(deps): bump alpine from 3.23.3 to 3.23.4 #124
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: "Test Release" | |
| on: | |
| workflow_dispatch: | |
| # pull_request_target event is required for autolabeler to support all PRs including forks | |
| pull_request_target: | |
| types: [closed] | |
| branches: [main] | |
| jobs: | |
| release: | |
| permissions: | |
| contents: write # Create releases and push major version tag | |
| pull-requests: read # Read PR labels for release-drafter | |
| packages: write # Push container images | |
| id-token: write # Federate via Workload Identity for attestation | |
| attestations: write # Create build provenance attestation | |
| discussions: write # Create announcement discussions | |
| uses: ./.github/workflows/release.yaml | |
| with: | |
| publish: true | |
| release-config-name: release-drafter.yaml | |
| image-name: ${{ github.repository }} | |
| create-attestation: true | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| image-registry-password: ${{ secrets.GITHUB_TOKEN }} | |
| discussion-category-id: ${{ secrets.DISCUSSION_CATEGORY_ID }} | |
| discussion-repository-id: ${{ secrets.DISCUSSION_REPOSITORY_ID }} |