From d070802330895e73b1fb74dfab5b2c5ae114c3a1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 07:41:16 -0400 Subject: [PATCH] chore(deps): update actions/checkout action to v4.1.0 (#817) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/benchmark.yml | 2 +- .github/workflows/cicd.yml | 10 +++++----- .github/workflows/manual_release.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 5d4984c9..c82dc41e 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 - name: Setup Environment uses: ./.github/actions/setup-env - name: Install project dependencies diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 169c3427..e3aa3145 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 - name: Setup Environment uses: ./.github/actions/setup-env - name: Install project dependencies @@ -34,7 +34,7 @@ jobs: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev'] fail-fast: true steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 - name: Setup Environment uses: ./.github/actions/setup-env with: @@ -88,7 +88,7 @@ jobs: if: "github.event_name == 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')" needs: [tests] steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 - name: Setup Environment uses: ./.github/actions/setup-env - name: Install project dependencies @@ -113,7 +113,7 @@ jobs: # Dry run check does not need to wait for others if: github.event_name == 'pull_request' && github.event.pull_request.head.ref == 'next' && !contains(github.event.head_commit.message, '[skip ci]') steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 with: fetch-depth: 0 - name: Setup Environment @@ -136,7 +136,7 @@ jobs: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_PUBLISH_TOKEN }} steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 with: fetch-depth: 0 persist-credentials: false diff --git a/.github/workflows/manual_release.yml b/.github/workflows/manual_release.yml index 3b094fb0..a16f3a99 100644 --- a/.github/workflows/manual_release.yml +++ b/.github/workflows/manual_release.yml @@ -15,7 +15,7 @@ jobs: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_PUBLISH_TOKEN }} steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 with: fetch-depth: 0 persist-credentials: false