Skip to content

Commit 33e9fd8

Browse files
Bump actions/checkout from 4 to 5 (#2547)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joshua Lampert <[email protected]>
1 parent 6279ed1 commit 33e9fd8

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/Documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
build:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
- uses: julia-actions/setup-julia@v2
3838
with:
3939
version: '1.10'

.github/workflows/Downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
# - mpi
6969
- threaded
7070
steps:
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v5
7272
- uses: julia-actions/setup-julia@v2
7373
with:
7474
version: ${{ matrix.version }}

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
format-suggestions:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: julia-actions/julia-format@v4
1616
with:
1717
version: "1.0.60"

.github/workflows/Invalidations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- uses: julia-actions/setup-julia@v2
2020
with:
2121
version: '1'
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- uses: julia-actions/julia-buildpkg@v1
2424
- uses: julia-actions/julia-invalidations@v1
2525
id: invs_pr
2626

27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
ref: ${{ github.event.repository.default_branch }}
3030
- uses: julia-actions/julia-buildpkg@v1

.github/workflows/ReviewChecklist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Add review checklist
1717
uses: trixi-framework/add-pr-review-checklist@v1
1818
with:

.github/workflows/SpellCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Actions Repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
- name: Check spelling
1313
uses: crate-ci/[email protected]

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
arch:
1616
- x64
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121
- run: |

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
arch: x64
104104
trixi_test: threaded
105105
steps:
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v5
107107
- uses: julia-actions/setup-julia@v2
108108
with:
109109
version: ${{ matrix.version }}
@@ -176,7 +176,7 @@ jobs:
176176
# Instead, we use the more tedious approach described above.
177177
# At first, we check out the repository and download all artifacts
178178
# (and list files for debugging).
179-
- uses: actions/checkout@v4
179+
- uses: actions/checkout@v5
180180
- uses: actions/download-artifact@v4
181181
- run: ls -R
182182
# Next, we merge the individual coverage files and upload

.github/workflows/downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- TrixiShallowWater.jl
6565
- TrixiAtmo.jl
6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
6868
- uses: julia-actions/setup-julia@v2
6969
with:
7070
version: ${{ matrix.version }}
@@ -76,7 +76,7 @@ jobs:
7676
# Note: we retrieve the current `main` branch of the downstream package to ensure
7777
# that compatibility errors we make in Trixi.jl are detected already here
7878
# See also https://github.com/trixi-framework/Trixi.jl/pull/1707#discussion_r1382938895
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v5
8080
with:
8181
repository: trixi-framework/${{ matrix.package }}
8282
path: downstream

0 commit comments

Comments
 (0)