From 00dff897748bf302424907e30a5e8905d5c0d97e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 18:40:03 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... 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 a0e1419b..9053f37f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -42,7 +42,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 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 @@ -127,7 +127,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Fetch the built docs from the "build" job - name: Download HTML documentation artifact @@ -137,7 +137,7 @@ jobs: path: doc/_build/html - name: Checkout the gh-pages branch in a separate folder - uses: actions/checkout@v3 + uses: actions/checkout@v4 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 59ee0d5f..33067299 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -29,7 +29,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 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 @@ -94,7 +94,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 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 036b7d39..489acdd9 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@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 956308c1..accf8b17 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -68,7 +68,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 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