Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 19, 2023
1 parent 5475ec1 commit c429d3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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@v3
uses: actions/checkout@v4
# 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@v3
uses: actions/checkout@v4
- 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@v3
uses: actions/checkout@v4
# 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@v3
- uses: actions/checkout@v4

# 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 @@ -36,7 +36,7 @@ jobs:
if: ${{ needs.release-please.outputs.releases_created && needs.release-please.outputs.buf_release_tag }}
steps:
# Run `git checkout`
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.release-please.outputs.buf_release_tag }}
# Install the `buf` CLI
Expand All @@ -52,7 +52,7 @@ jobs:
if: ${{ needs.release-please.outputs.releases_created && needs.release-please.outputs.json_release_tag }}
steps:
# Run `git checkout`
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.release-please.outputs.json_release_tag }}
- uses: JasonEtco/create-an-issue@v2
Expand Down

0 comments on commit c429d3c

Please sign in to comment.