Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.9+incompatible in /cmd/krane #1344
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: Boilerplate | |
on: | |
pull_request: | |
branches: ['main'] | |
jobs: | |
check: | |
name: Boilerplate Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false # Keep running if one leg fails. | |
matrix: | |
extension: | |
- go | |
- sh | |
# Map between extension and human-readable name. | |
include: | |
- extension: go | |
language: Go | |
- extension: sh | |
language: Bash | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- uses: chainguard-dev/actions/boilerplate@5e21cb47971231c078a677dfe89a348371cb880c # main | |
with: | |
extension: ${{ matrix.extension }} | |
language: ${{ matrix.language }} |