Skip to content

Commit f8f672a

Browse files
Merge pull request #1096 from SciML/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 4 to 6
2 parents 7a286a4 + 1bd84e0 commit f8f672a

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- '1.11'
5050
- 'lts'
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v6
5353
- uses: julia-actions/setup-julia@v2
5454
with:
5555
version: ${{ matrix.version }}

.github/workflows/Documentation.yml

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

.github/workflows/Downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
julia-version: ['1.10']
2020
group: ['Core']
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- uses: julia-actions/setup-julia@v2
2424
with:
2525
version: ${{ matrix.julia-version }}

.github/workflows/DowngradeSublibraries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- 'lib/OptimizationSciPy'
4141
- 'lib/OptimizationSpeedMapping'
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4444
- uses: julia-actions/setup-julia@v2
4545
with:
4646
version: ${{ matrix.julia-version }}

.github/workflows/Downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
- {user: SciML, repo: ModelingToolkit.jl, group: All}
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- uses: julia-actions/setup-julia@v2
2727
with:
2828
version: ${{ matrix.julia-version }}
2929
arch: x64
3030
- uses: julia-actions/julia-buildpkg@latest
3131
- name: Clone Downstream
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
3535
path: downstream

.github/workflows/FormatCheck.yml

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

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

.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@v6
1212
- name: Check spelling
1313
uses: crate-ci/typos@v1.18.0

0 commit comments

Comments
 (0)