Skip to content

Bump github.com/docker/docker from 20.10.21+incompatible to 24.0.9+incompatible #22

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

Bump github.com/docker/docker from 20.10.21+incompatible to 24.0.9+incompatible #22

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: build-test
on:
push:
branches:
- "main"
- "release-**"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Run Test
run: make test
- name: Build
run: make build