Bump github.com/moby/buildkit from 0.17.1 to 0.18.0 (#3264) #178
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: porter/porter-canary | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
# This configuration ensures that multiple canary releases don't run at the same time: | |
# - The 'group' combines the workflow name and git reference to create a unique identifier | |
# - 'cancel-in-progress: false' means if a new release is triggered, it will wait in line | |
# instead of canceling any running release | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
build_pipelinesrelease_template: | |
name: build_pipelinesrelease_template | |
uses: ./.github/workflows/build_pipelinesrelease_template.yml | |
with: | |
registry: ghcr.io/getporter | |
shouldPublish: true | |
skipTests: false | |
secrets: inherit |