Skip to content

Commit 53adf6e

Browse files
Bump actions/checkout from 4 to 5 (#40)
* 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> * update ubuntu --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Phillip Alday <me@phillipalday.com>
1 parent 309c42b commit 53adf6e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
matrix:
2323
version: [min, 1]
2424
arch: [x64]
25-
os: [ubuntu-20.04] # macos-10.15, windows-2019
25+
os: [ubuntu-24.04] # macos-10.15, windows-2019
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Julia Setup
3030
uses: julia-actions/setup-julia@v2
3131
with:

.github/workflows/docs-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout gh-pages branch
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
ref: gh-pages
1515
- name: Delete preview and history + push changes

.github/workflows/documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Documentation
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: julia-actions/julia-buildpkg@latest
1919
- uses: julia-actions/julia-docdeploy@latest
2020
env:

.github/workflows/spellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Actions Repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Check spelling
1414
uses: crate-ci/typos@master
1515
# don't fail on typos in files not impacted by this PR

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: julia-actions/setup-julia@latest
2424
with:
2525
version: ${{ matrix.julia-version }}
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Instantiate `format` environment and format
2828
run: |
2929
julia --project=format -e 'using Pkg; Pkg.instantiate()'

0 commit comments

Comments
 (0)