From d908c127fe02531a49b7147dc70e260a1367afe4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 21:46:07 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/pr-checks.yml | 4 ++-- .github/workflows/release-please.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 6d01bb9..ceb1cdd 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -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: @@ -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 diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index e93e4df..a049b64 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -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@v3 + - uses: actions/checkout@v4 with: ref: ${{ needs.release-please.outputs.buf_release_tag }} # Install the `buf` CLI @@ -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@v3 + - uses: actions/checkout@v4 with: ref: ${{ needs.release-please.outputs.json_release_tag }} - uses: JasonEtco/create-an-issue@v2