Skip to content

build(deps): bump actions/setup-go from 6.2.0 to 6.3.0 (#17) #26

build(deps): bump actions/setup-go from 6.2.0 to 6.3.0 (#17)

build(deps): bump actions/setup-go from 6.2.0 to 6.3.0 (#17) #26

Workflow file for this run

name: Codegen CI
on:
push:
branches:
- main
paths:
- "codegen/**"
- ".github/workflows/codegen.yaml"
pull_request:
branches:
- main
paths:
- "codegen/**"
- ".github/workflows/codegen.yaml"
permissions:
contents: read
defaults:
run:
working-directory: ./codegen
env:
GOLANGCI_LINT_VERSION: v2.8.0
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: './codegen/go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
working-directory: ./codegen
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: './codegen/go.mod'
- name: Run tests
run: go test ./...