Skip to content

Bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #58

Bump google.golang.org/protobuf from 1.28.1 to 1.33.0

Bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #58

Workflow file for this run

name: Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
Bazel:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/bazel
~/.cache/bazelisk
key: ${{ runner.os }}-Bazel-${{ hashFiles('WORKSPACE', '**/*.bazel', '**/*.bzl') }}
restore-keys: |
${{ runner.os }}-Bazel-
# Required by Clang 16:
- run: sudo apt-get install libtinfo5
- run: bazel version
- run: bazel query //...
- run: bazel build --nobuild //...
- run: bazel test //tests/...
Go:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-Go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-Go-
- uses: actions/setup-go@v3
with:
go-version: 1.20.2
- run: go version
- run: go build github.com/attilaolah/fuzz/...