chore(deps): update docker.io/library/busybox:stable-glibc docker digest to 51d373b #4503
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: Go | |
# Any change in triggers needs to be reflected in the concurrency group. | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.after }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
# renovate: datasource=golang-version depName=go | |
go-version: 1.21.5 | |
- name: Run static checks | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
with: | |
# renovate: datasource=docker depName=golangci/golangci-lint | |
version: v1.55.2 | |
args: --config=.golangci.yml --verbose | |
skip-cache: true | |
- name: Check module vendoring | |
run: | | |
go mod tidy | |
go mod vendor | |
go mod verify | |
test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy && go mod vendor', and submit your changes"; exit 1) | |
- name: Build | |
run: make | |
- name: Cross-build | |
run: | | |
# all GOOS/GOARCH combinations supported by `make local-release` | |
GOOS=linux GOARCH=386 go build ./cmd/cilium | |
GOOS=linux GOARCH=amd64 go build ./cmd/cilium | |
GOOS=linux GOARCH=arm go build ./cmd/cilium | |
GOOS=linux GOARCH=arm64 go build ./cmd/cilium | |
GOOS=darwin GOARCH=amd64 go build ./cmd/cilium | |
GOOS=darwin GOARCH=arm64 go build ./cmd/cilium | |
GOOS=windows GOARCH=386 go build ./cmd/cilium | |
GOOS=windows GOARCH=amd64 go build ./cmd/cilium | |
GOOS=windows GOARCH=arm64 go build ./cmd/cilium | |
- name: Test | |
run: make test |