chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.116.1 #1093
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: lint | |
on: | |
pull_request: | |
branches: | |
- "**" | |
types: [opened, synchronize, reopened, edited] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
# Optional: allow read access to pull request. Use with `only-new-issues` option. | |
# pull-requests: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
run: go run github.com/golangci/golangci-lint/cmd/golangci-lint run | |
- name: govulncheck | |
run: go run golang.org/x/vuln/cmd/govulncheck ./... | |
docker: | |
name: docker buildable | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: buildable | |
run: docker build -t buildable . |