Skip to content

Commit

Permalink
Merge pull request #4 from kpfleming/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
kpfleming authored Sep 11, 2023
2 parents 3f93637 + d65eb6b commit 6bfdf8f
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 6bfdf8f

Please sign in to comment.