Skip to content

Commit e0d3933

Browse files
dependabot[bot]behrisch
authored andcommitted
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent bb56b84 commit e0d3933

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

.github/workflows/bibtex.yml

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

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Python
1818
uses: actions/setup-python@v6

.github/workflows/cibuildwheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Cloning SUMO
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
path: sumo
3535
fetch-depth: 0
@@ -91,7 +91,7 @@ jobs:
9191

9292
steps:
9393
- name: Cloning SUMO
94-
uses: actions/checkout@v5
94+
uses: actions/checkout@v6
9595
with:
9696
fetch-depth: 0
9797
filter: tree:0

.github/workflows/docker.yml

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

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Log in to the Container registry
2727
uses: docker/login-action@v3

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Cloning repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Installing plantuml
2323
run: |
@@ -57,7 +57,7 @@ jobs:
5757
restore-keys: cache-lychee-
5858

5959
- name: Cloning repository
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161

6262
- name: Lychee Link Checker
6363
uses: lycheeverse/lychee-action@v2

.github/workflows/draft-pdf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Paper Draft
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Build draft PDF
1818
uses: openjournals/openjournals-draft-action@master

.github/workflows/i18n.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: sudo apt-get update && sudo apt-get install -y gettext
1616

1717
- name: Checkout code
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Setup Python
2121
uses: actions/setup-python@v6

.github/workflows/jupedsim-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Cloning jupedsim
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
repository: PedestrianDynamics/jupedsim
3434
ref: ${{ matrix.jps_version }}
@@ -43,12 +43,12 @@ jobs:
4343

4444
- name: Cloning SUMO
4545
# this does not a full clone to speed up the build, version number will be incorrect
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
with:
4848
path: sumo
4949

5050
- name: Cloning SUMO Libraries
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
repository: DLR-TS/SUMOLibraries
5454
path: SUMOLibraries

.github/workflows/linux-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Cloning SUMO
2828
if: github.event.schedule != '5 8 * * *'
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232
filter: tree:0
@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Cloning SUMO
87-
uses: actions/checkout@v5
87+
uses: actions/checkout@v6
8888

8989
- name: Downloading Wheels artifact
9090
if: github.event.schedule != '5 8 * * *'

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Cloning SUMO
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
path: sumo
3838
fetch-depth: 0
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Cloning jupedsim
6565
if: matrix.build_type == 'full' && matrix.compiler == 'gcc'
66-
uses: actions/checkout@v5
66+
uses: actions/checkout@v6
6767
with:
6868
repository: PedestrianDynamics/jupedsim
6969
ref: ${{ matrix.jps_version }}

.github/workflows/macos-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Cloning SUMO
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0
3838
filter: tree:0
@@ -98,7 +98,7 @@ jobs:
9898

9999
steps:
100100
- name: Cloning SUMO
101-
uses: actions/checkout@v5
101+
uses: actions/checkout@v6
102102

103103
- name: Downloading Wheels artifact
104104
uses: actions/download-artifact@v6

0 commit comments

Comments
 (0)