Skip to content

Commit

Permalink
Add Go 1.17 to CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bcessa committed Oct 22, 2021
1 parent 410b945 commit 288eccf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,21 +77,21 @@ jobs:
# Setup buf
- name: Setup buf
id: setup-buf
uses: bufbuild/buf-setup-action@v0.3.1
uses: bufbuild/buf-setup-action@v0.5.0
with:
version: '0.50.0'
version: '1.0.0-rc1'

# Static analysis
- name: Static analysis
uses: bufbuild/buf-lint-action@v0.3.0
uses: bufbuild/buf-lint-action@v1.0.0
if: ${{ steps.setup-buf.outcome == 'success' }}

# Detect breaking changes
- name: Detect breaking changes
uses: bufbuild/buf-breaking-action@v0.4.0
uses: bufbuild/buf-breaking-action@v1.0.0
if: ${{ steps.setup-buf.outcome == 'success' }}
with:
against: 'https://github.com/${{ github.repository }}.git#branch=develop'
against: 'https://github.com/${{ github.repository }}.git#branch=master'
env:
BUF_INPUT_HTTPS_USERNAME: ${{ github.actor }}
BUF_INPUT_HTTPS_PASSWORD: ${{ secrets.ACCESS_TOKEN }}
Expand All @@ -103,7 +103,7 @@ jobs:
needs: protos
strategy:
matrix:
go-version: [1.15.x, 1.16.x]
go-version: [1.15.x, 1.16.x, 1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
Expand Down

0 comments on commit 288eccf

Please sign in to comment.