From d824f0accb9d09151452748d40f4e357f9472e5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 09:46:08 +0000 Subject: [PATCH] Bump actions/checkout from 4.2.0 to 4.2.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4.2.0...v4.2.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 6 +++--- .github/workflows/pypi.yml | 4 ++-- .github/workflows/style.yml | 4 ++-- .github/workflows/test.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f1274721..10e10471 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -38,7 +38,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 with: # Need to fetch more than the last commit so that setuptools-scm can # create the correct version string. If the number of commits since @@ -132,7 +132,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 # Fetch the built docs from the "build" job - name: Download HTML documentation artifact @@ -142,7 +142,7 @@ jobs: path: doc/_build/html - name: Checkout the gh-pages branch in a separate folder - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 with: ref: gh-pages # Checkout to this folder instead of the current one diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 1f6d3f83..ab5dea25 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -32,7 +32,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 with: # Need to fetch more than the last commit so that setuptools_scm can # create the correct version string. If the number of commits since @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 with: # The GitHub token is preserved by default but this job doesn't need # to be able to push to GitHub. diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 5bf90653..8906e366 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 with: persist-credentials: false @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 with: persist-credentials: false diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 23ae9ef3..e5141029 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,7 +70,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 with: # Need to fetch more than the last commit so that setuptools_scm can # create the correct version string. If the number of commits since