Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent 24bc987 commit 98a1325
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
versions: ${{ steps.get_versions.outputs.versions }}
need_ci: ${{ (steps.preflight.outputs.need_ci == 'true') || (steps.preflight.outputs.need_image == 'true') }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: get_versions
run: cat workflow-support/versions.json >> $GITHUB_OUTPUT
- id: details
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
image_base: ${{ steps.details.outputs.image_base }}
need_lint: ${{ steps.preflight.outputs.need_lint == 'true' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: details
uses: kpfleming/composite-actions/image-details@v2
with:
Expand All @@ -31,5 +31,5 @@ jobs:
container:
image: ${{ needs.preflight.outputs.image_base }}:main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: kpfleming/composite-actions/lint-hatch@v2
2 changes: 1 addition & 1 deletion .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
container:
image: ${{ inputs.image }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build wheel
run: hatch build -t wheel
shell: bash
Expand Down

0 comments on commit 98a1325

Please sign in to comment.