Bump github.com/docker/docker from 20.10.23+incompatible to 24.0.6+incompatible #3333
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: Test HORNET | |
on: | |
pull_request: | |
paths-ignore: | |
- 'documentation/**' | |
- 'nfpm/**' | |
- 'private_tangle/**' | |
- 'scripts/**' | |
- 'tools/**' | |
jobs: | |
test: | |
name: Test HORNET | |
runs-on: self-hosted | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
id: go | |
- name: Print Go version | |
run: go version | |
- name: Install Build Essential | |
run: sudo apt update && sudo apt install build-essential -y | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Test HORNET | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 3 | |
command: go test `go list ./... | grep -v -e integration-tests` |