Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require buf v1.34.0 #38

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
contents: read
pull-requests: write
env:
BUF_VERSION: "1.33.0"
BUF_VERSION: "1.34.0"
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SHELL := bash
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
MAKEFLAGS += --no-print-directory
BUF_VERSION ?= 1.33.0
BUF_VERSION ?= 1.34.0

UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ For reproducible builds, you can pin to an explicit version of `buf` by setting
```yaml
- uses: bufbuild/buf-action@v0.1
with:
version: 1.33.0
version: 1.34.0
```

If no version is specified in the workflow config, the action will resolve the version in order of precendence:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ inputs:
Version of the Buf CLI to use.
Example:
with:
version: 1.33.0
version: 1.34.0
required: false
username:
description: |-
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53930,7 +53930,7 @@ var tool_cache = __nccwpck_require__(7784);


// requiredVersion is the minimum version of buf required.
const requiredVersion = ">=1.32.0";
const requiredVersion = ">=1.34.0";
// installBuf installs the buf binary and returns the path to the binary. The
// versionInput should be an explicit version of buf.
async function installBuf(github, versionInput) {
Expand Down
2 changes: 1 addition & 1 deletion examples/version-input/buf-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
- uses: bufbuild/buf-action@v0.1
with:
setup_only: true
version: 1.33.0
version: 1.34.0
- run: buf version
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import * as semver from "semver";
import { getEnv } from "./inputs";

// requiredVersion is the minimum version of buf required.
const requiredVersion = ">=1.32.0";
const requiredVersion = ">=1.34.0";

// installBuf installs the buf binary and returns the path to the binary. The
// versionInput should be an explicit version of buf.
Expand Down
Loading