Skip to content

test: buildkit with defaults #1610

test: buildkit with defaults

test: buildkit with defaults #1610

Workflow file for this run

name: "[Informing] Check dependencies"
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
permissions: read-all
jobs:
check-deps:
name: "Check dependencies"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: "1.22"
check-latest: true
- name: Check go.mod
shell: bash
run: |
# there should be no go.mod changes
go mod tidy
git diff --exit-code