Bump github.com/docker/docker from 25.0.5+incompatible to 26.1.4+incompatible in /tools #113
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build all platforms | |
on: [ push, pull_request ] | |
jobs: | |
crossbuild: | |
strategy: | |
matrix: | |
go-version: [ "1.21", "1.22" ] | |
platform: [ "ubuntu-latest" ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build containers | |
run: make all-container GO_VERSION=${{ matrix.go-version }} |