Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
pkwarren committed Jul 15, 2024
1 parent c701e94 commit 8de1532
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ jobs:
go-version: '1.22'
check-latest: true
- name: Install buf cli
shell: bash
run: |
go install github.com/bufbuild/buf/cmd/buf
BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version')
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
# uses: bufbuild/buf-setup-action@v1
# with:
# github_token: ${{ github.token }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ jobs:
echo "PLUGINS=${val}" >> $GITHUB_ENV
fi
- name: Install buf cli
shell: bash
run: |
go install github.com/bufbuild/buf/cmd/buf
BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version')
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
# uses: bufbuild/buf-setup-action@v1
# with:
# github_token: ${{ github.token }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/fetch_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ jobs:
go-version: '1.22'
check-latest: true
- name: Install buf cli
shell: bash
run: |
go install github.com/bufbuild/buf/cmd/buf
BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version')
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
# uses: bufbuild/buf-setup-action@v1
# with:
# github_token: ${{ github.token }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ jobs:
echo "PLUGINS=${val}" >> $GITHUB_ENV
fi
- name: Install buf cli
shell: bash
run: |
go install github.com/bufbuild/buf/cmd/buf
BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version')
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
# uses: bufbuild/buf-setup-action@v1
# with:
# github_token: ${{ github.token }}
Expand Down

0 comments on commit 8de1532

Please sign in to comment.