Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
github_token: ${{ github.token }}
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
# Lint your Protobuf sources
- uses: bufbuild/buf-lint-action@v1
with:
Expand All @@ -32,7 +32,7 @@ jobs:
with:
github_token: ${{ github.token }}
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Buf format check
run: buf format -d --exit-code

Expand All @@ -44,7 +44,7 @@ jobs:
with:
github_token: ${{ github.token }}
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
# Run breaking change detection against the last commit
- uses: bufbuild/buf-breaking-action@v1
with:
Expand All @@ -55,7 +55,7 @@ jobs:
validate-schema:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# Use ajv to validate schema
- name: Setup node
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
if: ${{ needs.release-please.outputs.releases_created && needs.release-please.outputs.buf_release_tag }}
steps:
# Run `git checkout`
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ needs.release-please.outputs.buf_release_tag }}
# Install the `buf` CLI
Expand All @@ -53,7 +53,7 @@ jobs:
if: ${{ needs.release-please.outputs.releases_created && needs.release-please.outputs.json_release_tag }}
steps:
# Run `git checkout`
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ needs.release-please.outputs.json_release_tag }}
- uses: JasonEtco/create-an-issue@v2
Expand Down