Skip to content

Bump actions/github-script from 8 to 9 #1110

Bump actions/github-script from 8 to 9

Bump actions/github-script from 8 to 9 #1110

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch: {} # support manual runs
permissions:
contents: read
pull-requests: write
jobs:
test-and-lint:
name: Test and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: tools/go.mod
cache-dependency-path: go.work.sum
- run: make lint-protovalidate
- run: make test-go
- run: make lint-go
checkgenerate:
name: Check generate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: bazel-contrib/setup-bazel@0.18.0
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
- uses: actions/setup-go@v6
with:
go-version-file: tools/go.mod
cache-dependency-path: go.work.sum
- run: make checkgenerate