Update module google.golang.org/protobuf to v1.33.0 [SECURITY] #272
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: compile PB | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
- "deployment" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Corepack Enable | |
run: corepack enable | |
- run: pnpm install --frozen-lockfile | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: add path | |
run: |- | |
echo "$RUNNER_TEMP/protoc/bin" >> $GITHUB_PATH | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- name: bufbuild/install | |
uses: bufbuild/buf-setup-action@v1.28.1 | |
with: | |
version: v1.27.2 | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: setup protoc | |
uses: arduino/setup-protoc@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: prepare protoc | |
run: |- | |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.31 | |
go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest | |
mkdir -p $GITHUB_WORKSPACE/backend/spec | |
- name: gen proto | |
run: |- | |
buf generate | |
working-directory: proto | |
- name: Add & Commit | |
uses: EndBug/add-and-commit@v9.1.3 | |
with: | |
default_author: github_actions | |
# FIXME: PATかgithub appsのtokenを使う |