Skip to content

Commit 5150a1e

Browse files
authored
Prepare for v1.1.1 (#146)
1 parent 114c0a8 commit 5150a1e

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read
99
pull-requests: write
1010
env:
11-
BUF_VERSION: "1.35.0"
11+
BUF_VERSION: "1.35.0" # Minimum version we support.
1212
BUF_MODULE: ${{ vars.BUF_MODULE }}
1313
jobs:
1414
build:

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SHELL := bash
66
MAKEFLAGS += --warn-undefined-variables
77
MAKEFLAGS += --no-builtin-rules
88
MAKEFLAGS += --no-print-directory
9-
BUF_VERSION ?= 1.35.0
9+
BUF_VERSION ?= 1.50.1
1010

1111
UNAME_S := $(shell uname -s)
1212
ifeq ($(UNAME_S),Darwin)
@@ -46,7 +46,6 @@ endif
4646
$(SED_I) "s/version: [0-9]+\.[0-9]+\.[0-9]+/version: $(BUF_VERSION)/g" action.yml README.md examples/*.yaml examples/*/*.yaml
4747
$(SED_I) "s/buf-action@v[0-9]+(\.[0-9]+)?(\.[0-9]+)?/buf-action@v$(VERSION_SHORT)/g" README.md examples/*.yaml examples/*/*.yaml
4848
$(SED_I) "s/\"version\": \"[0-9]+\.[0-9]+\.[0-9]+\"/\"version\": \"$(VERSION)\"/g" package.json
49-
$(SED_I) "s/^ BUF_VERSION: \"[0-9]+\.[0-9]+\.[0-9]+\"/ BUF_VERSION: \"$(BUF_VERSION)\"/g" .github/workflows/ci.yaml
5049
npm prune
5150

5251
.PHONY: generate

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
Version of the Buf CLI to use.
2828
Example:
2929
with:
30-
version: 1.35.0
30+
version: 1.50.1
3131
required: false
3232
token:
3333
description: |-

examples/version-input/buf-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
- uses: bufbuild/buf-action@v1
1313
with:
1414
setup_only: true
15-
version: 1.35.0
15+
version: 1.50.1
1616
- run: buf version

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "buf-action",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "GitHub Action for buf",
55
"main": "src/main.ts",
66
"scripts": {

0 commit comments

Comments
 (0)