Skip to content

chore(deps): bump github.com/moby/buildkit from 0.11.6 to 0.13.1 #347

chore(deps): bump github.com/moby/buildkit from 0.11.6 to 0.13.1

chore(deps): bump github.com/moby/buildkit from 0.11.6 to 0.13.1 #347

Workflow file for this run

name: Test Go
on:
pull_request:
merge_group:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: go mod tidy
run: |
go mod tidy
if [ -n "$(git status --porcelain)" ]; then
echo "Run 'go mod tidy' and push it"
exit 1
fi
- name: Run tests
run: make test
shell: bash