diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-09-05 01:02:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 01:02:09 +0000 |
commit | 2bd75e1e74c0ef7033ab1caa630aef8ac56399f9 (patch) | |
tree | 24e31def81ce0cbdb19b1002eea06fb040c484d3 | |
parent | 4d9119760056492eabc201bfad5de2f9e660b85f (diff) |
Bump actions/checkout from 3 to 4dependabot/github_actions/actions/checkout-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] <support@github.com>
-rw-r--r-- | .github/workflows/ci.yml | 8 | ||||
-rw-r--r-- | .github/workflows/publish-docs.yml | 4 | ||||
-rw-r--r-- | .github/workflows/publish-release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test-docker.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test-release.yml | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3c6283..ce4b98f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", pypy-3.9] os: ["macos-latest", "ubuntu-latest", "windows-latest"] steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} # Checkout pull request HEAD commit instead of merge commit fetch-depth: 0 # checkout all history, needed for hatch versioning @@ -87,7 +87,7 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", pypy-3.9] os: ["macos-latest", "ubuntu-latest", "windows-latest"] steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} # Checkout pull request HEAD commit instead of merge commit fetch-depth: 0 # checkout all history, needed for hatch versioning @@ -171,7 +171,7 @@ jobs: doc-checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} # Checkout pull request HEAD commit instead of merge commit @@ -247,7 +247,7 @@ jobs: runs-on: "ubuntu-latest" steps: # Checkout code in order to determine PR number - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 8415582..fa54649 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -24,12 +24,12 @@ jobs: steps: # Checkout the gh-pages branch, we need to commit the docs to this branch below - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: ref: gh-pages # Now checkout the git ref on which we're working - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4.7.0 with: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 4fdafaf..ff57565 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -66,7 +66,7 @@ jobs: - name: Install Hatch run: python -m pip install hatch==1.7.0 - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: ref: ${{ inputs.repo_release_ref }} fetch-depth: 0 # checkout all history, needed for hatch versioning diff --git a/.github/workflows/test-docker.yml b/.github/workflows/test-docker.yml index b811c41..16f4daf 100644 --- a/.github/workflows/test-docker.yml +++ b/.github/workflows/test-docker.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index d28ed46..7f498bd 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -59,7 +59,7 @@ jobs: gitlint --version [ "$(gitlint --version)" == "gitlint, version ${{ inputs.gitlint_version }}" ] - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: ref: ${{ inputs.repo_test_ref }} |