From 3488aef2a5f0cf0a762fbca8bd629fb0bb9d79ac Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 23:51:59 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/fix-style.yml | 2 +- .github/workflows/pr.yaml | 2 +- .github/workflows/release.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fix-style.yml b/.github/workflows/fix-style.yml index 60bd9af5..fa9237a0 100644 --- a/.github/workflows/fix-style.yml +++ b/.github/workflows/fix-style.yml @@ -26,7 +26,7 @@ jobs: echo "PR_INFO=$(gh -R ${{ github.repository }} pr view ${PR_NUM} --json headRepository,headRepositoryOwner,headRefName | jq -c)" >> $GITHUB_OUTPUT env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: '${{ fromJSON(steps.pr-info.outputs.PR_INFO).headRepositoryOwner.login }}/${{ fromJSON(steps.pr-info.outputs.PR_INFO).headRepository.name }}' ref: '${{ fromJSON(steps.pr-info.outputs.PR_INFO).headRefName }}' diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index e383c598..44053516 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/actions/setup-python diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 54011714..54f47df0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: false