Skip to content

Bump github.com/docker/docker to v25.0.6 (#421) #37

Bump github.com/docker/docker to v25.0.6 (#421)

Bump github.com/docker/docker to v25.0.6 (#421) #37

Workflow file for this run

name: Merge
on:
push:
branches:
- master
- release/*
jobs:
vet:
uses: ./.github/workflows/vet.yml
unit-test:
uses: ./.github/workflows/unit.yml
build:
uses: ./.github/workflows/build.yml
e2e:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [build, vet, unit-test]
uses: ./.github/workflows/e2e.yml
integration:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [build, vet, unit-test]
uses: ./.github/workflows/integration.yml