Skip to content

Commit 55eb012

Browse files
authored
Merge pull request #18 from kpfleming/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents ff3a71e + 8d3f1d3 commit 55eb012

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
versions: ${{ steps.get_versions.outputs.versions }}
2424
need_ci: ${{ (steps.preflight.outputs.need_ci == 'true') || (steps.preflight.outputs.need_image == 'true') }}
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
show-progress: false
2929
- id: get_versions

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
show-progress: false
3333

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
image_base: ${{ steps.details.outputs.image_base }}
1515
need_lint: ${{ steps.preflight.outputs.need_lint == 'true' }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
show-progress: false
2020
- id: details
@@ -33,7 +33,7 @@ jobs:
3333
container:
3434
image: ${{ needs.preflight.outputs.image_base }}:main
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
with:
3838
show-progress: false
3939
- uses: kpfleming/composite-actions/lint-hatch@v3

.github/workflows/pypi-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-24.04-arm
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
show-progress: false

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
container:
2222
image: ${{ inputs.image }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
show-progress: false
2727
- name: build wheel

0 commit comments

Comments
 (0)