Skip to content

Bump actions/checkout from 4.1.6 to 4.1.7 #480

Bump actions/checkout from 4.1.6 to 4.1.7

Bump actions/checkout from 4.1.6 to 4.1.7 #480

Workflow file for this run

name: Go
on:
pull_request:
paths:
- .github/workflows/go.yml
- '**/*.go'
- go.sum
- justfile
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v43-go
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
- run: just go-lint --verbose --timeout=10m
fmt:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v43-go
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
- run: just go-fmt-check
unit-test:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v43-go
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
- run: just proxy-init-test-unit