chore(deps): bump github.com/docker/docker from 28.4.0+incompatible to 28.5.0+incompatible in the go-dependencies group #49
This file contains hidden or 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: Check - CI Integration | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '**/*.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'Makefile' | |
- '.github/workflows/**' | |
- 'tests/**' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- '**/*.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'Makefile' | |
- '.github/workflows/**' | |
- 'tests/**' | |
concurrency: | |
group: "integration-${{ github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 | |
with: | |
go-version: '1.24' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1 | |
- name: Run integration tests | |
timeout-minutes: 10 | |
run: make test-integration TEST=bandwidth-limit |