Skip to content

Commit b060ff4

Browse files
Bump actions/checkout from 4 to 5 (#172)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com>
1 parent 7467cec commit b060ff4

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- version: '1.10' # current lts
3535
os: windows-latest
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
- uses: julia-actions/setup-julia@v2
3939
with:
4040
version: ${{ matrix.version }}
@@ -92,7 +92,7 @@ jobs:
9292
# Instead, we use the more tedious approach described above.
9393
# At first, we check out the repository and download all artifacts
9494
# (and list files for debugging).
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v5
9696
- uses: actions/download-artifact@v5
9797
- run: ls -R
9898
# Next, we merge the individual coverage files and upload

.github/workflows/DocPreviewCleanup.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: Checkout gh-pages branch
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
ref: gh-pages
1818

.github/workflows/Documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
build:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- uses: julia-actions/setup-julia@v2
4242
with:
4343
version: '1'

.github/workflows/Downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
arch:
3030
- x64
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- uses: julia-actions/setup-julia@v2
3434
with:
3535
version: ${{ matrix.version }}

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
version: ${{ matrix.julia-version }}
2424

25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Install JuliaFormatter and format
2727
# This will use the latest version by default but you can set the version like so:
2828
#

.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/typos@v1.37.0

0 commit comments

Comments
 (0)