Skip to content

Commit c422c82

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

13 files changed

Lines changed: 24 additions & 24 deletions

.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@v4
15+
uses: actions/checkout@v5
1616

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

.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@v4
32+
uses: actions/checkout@v5
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@v4
94+
uses: actions/checkout@v5
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@v4
24+
uses: actions/checkout@v5
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@v4
20+
uses: actions/checkout@v5
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@v4
60+
uses: actions/checkout@v5
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@v4
15+
uses: actions/checkout@v5
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@v4
18+
uses: actions/checkout@v5
1919

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

.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@v4
31+
uses: actions/checkout@v5
3232
with:
3333
repository: PedestrianDynamics/jupedsim
3434
ref: ${{ matrix.jps_version }}
@@ -42,12 +42,12 @@ jobs:
4242

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

4949
- name: Cloning SUMO Libraries
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
repository: DLR-TS/SUMOLibraries
5353
path: SUMOLibraries

.github/workflows/linux-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- name: Cloning SUMO
2929
if: github.event.schedule != '5 8 * * *'
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
filter: tree:0
@@ -86,7 +86,7 @@ jobs:
8686

8787
steps:
8888
- name: Cloning SUMO
89-
uses: actions/checkout@v4
89+
uses: actions/checkout@v5
9090

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

.github/workflows/linux.yml

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

3434
steps:
3535
- name: Cloning SUMO
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
path: sumo
3939
fetch-depth: 0
@@ -64,7 +64,7 @@ jobs:
6464

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

.github/workflows/macos-wheels.yml

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

3838
steps:
3939
- name: Cloning SUMO
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
with:
4242
fetch-depth: 0
4343
filter: tree:0
@@ -107,7 +107,7 @@ jobs:
107107

108108
steps:
109109
- name: Cloning SUMO
110-
uses: actions/checkout@v4
110+
uses: actions/checkout@v5
111111

112112
- name: Downloading Wheels artifact
113113
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)