Skip to content

Commit 1747d59

Browse files
authored
Merge pull request #939 from zerothi/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 6e7cbe7 + 11eae39 commit 1747d59

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/codeql.yml

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

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Initialize CodeQL
2828
uses: github/codeql-action/init@v3

.github/workflows/documentation_ghpages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
should_run: ${{ steps.should_run.outputs.should_run }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
submodules: false
2222
- name: Print the latest commit
@@ -44,7 +44,7 @@ jobs:
4444
run: sudo apt install -y pandoc
4545

4646
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
# The files submodule is required for viz documentation
5050
submodules: true

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
lint:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- uses: psf/black@stable
1212
with:
1313
version: "~= 25.0"

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
&& github.actor != 'dependabot[bot]'
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
with:
5959
ref: '${{ github.event.inputs.branch }}'
6060
- run: test -n $(git rev-list --after="1 week" --max-count=1 ${{ github.sha }})
@@ -88,7 +88,7 @@ jobs:
8888

8989
steps:
9090
- name: Checkout sisl
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@v5
9292
with:
9393
ref: '${{ github.event.inputs.branch }}'
9494
# The files submodule is required for tests purposes

.github/workflows/wheels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
platforms: arm64
7777

78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979

8080
- name: Ensure fortran
8181
uses: fortran-lang/setup-fortran@v1
@@ -132,7 +132,7 @@ jobs:
132132
name: Build source dist
133133
runs-on: ubuntu-latest
134134
steps:
135-
- uses: actions/checkout@v4
135+
- uses: actions/checkout@v5
136136
with:
137137
fetch-depth: 0
138138

0 commit comments

Comments
 (0)