Skip to content

build(go): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible #1452

build(go): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible

build(go): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible #1452

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches: [ main ]
merge_group:
workflow_dispatch:
jobs:
ci:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v5
with:
go-version-file: go.mod
- name: Build
run: make ci
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.os }}
path: coverage.*
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.4.3
with:
file: ./coverage.out
flags: ${{ runner.os }}
release-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Free up disk space
uses: jlumbroso/free-disk-space@v1.3.1
with:
large-packages: false
docker-images: false
swap-storage: false
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v5
with:
go-version-file: go.mod
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Release test
run: make build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/*.*