Skip to content

Bump github.com/docker/docker from 24.0.9+incompatible to 25.0.6+incompatible #608

Bump github.com/docker/docker from 24.0.9+incompatible to 25.0.6+incompatible

Bump github.com/docker/docker from 24.0.9+incompatible to 25.0.6+incompatible #608

Workflow file for this run

name: PR
on:
pull_request:
types: [opened, ready_for_review, synchronize]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: '1.22'
- name: Run tests
run: |
make build
if [[ -n $(git status --porcelain) ]]; then
echo "git is in dirty state";
git status --porcelain=2 --branch
exit 1
fi
make test