Bump eclipse-temurin from 21_35-jre-jammy to 21.0.2_13-jre-jammy in /src/main/docker #512
Workflow file for this run
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: Buf | |
on: | |
pull_request: | |
branches: [ "main" ] | |
permissions: { } | |
jobs: | |
buf: | |
name: Buf | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 | |
- name: Setup buf | |
uses: bufbuild/buf-setup-action@88db93f5d74ffa329bb43e42aa95cd822697d214 # tag=v1.29.0 | |
with: | |
github_token: ${{ github.token }} | |
- name: Lint Protobuf | |
uses: bufbuild/buf-lint-action@044d13acb1f155179c606aaa2e53aea304d22058 # tag=v1.1.0 | |
with: | |
input: src/main/proto | |
- name: Detect Breaking Changes | |
uses: bufbuild/buf-breaking-action@a074e988ee34efcd4927079e79c611f428354c01 # tag=v1.1.3 | |
with: | |
input: src/main/proto | |
against: https://github.com/${{ github.repository }}.git#branch=main,subdir=src/main/proto |