Skip to content

chore(deps): bump the github-actions group with 2 updates #1157

chore(deps): bump the github-actions group with 2 updates

chore(deps): bump the github-actions group with 2 updates #1157

Workflow file for this run

name: Validate model-cli
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
- 'v[0-9]*'
tags:
- 'v*'
paths:
- 'cmd/cli/**'
- '.github/workflows/cli-validate.yml'
pull_request:
paths:
- 'cmd/cli/**'
- '.github/workflows/cli-validate.yml'
jobs:
prepare:
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.generate.outputs.matrix }}
steps:
-
name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
-
name: Generate matrix
id: generate
uses: docker/bake-action/subaction/matrix@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b
with:
files: ./cmd/cli/docker-bake.hcl
target: validate
validate:
runs-on: ubuntu-24.04
needs:
- prepare
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.prepare.outputs.matrix) }}
steps:
-
name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
with:
buildkitd-flags: --debug
-
name: Validate
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7
with:
files: ./cmd/cli/docker-bake.hcl
targets: ${{ matrix.target }}