Skip to content

Commit 952d11c

Browse files
authored
Merge pull request #272 from LCSB-BioCore/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents d4a7c93 + acc9afd commit 952d11c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
arch:
2525
- x64
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- uses: julia-actions/setup-julia@v2
2929
with:
3030
version: ${{ matrix.version }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: julia-actions/setup-julia@v2
1919
- uses: julia-actions/cache@v2
2020
- name: Install dependencies

.github/workflows/pr-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Clone the repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: Checkout the pull request code # this checks out the actual branch so that one can commit into it
1616
if: github.event_name == 'issue_comment'
1717
env:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ConstructionBase = "1.3"
1616
DocStringExtensions = "0.8, 0.9"
1717
IfElse = "0.1"
1818
SBML_jll = "5.19.5"
19-
Symbolics = "5"
19+
Symbolics = "5,6"
2020
Unitful = "1"
2121
julia = "1.6"
2222

test/loaddynamicmodels.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ sbmlfiles = [
8585
@testset "Loading of models from sbml_test_suite" begin
8686
for (sbmlfile, url, hash, converter, expected_par, expected_rxn, expected_u0) in
8787
sbmlfiles
88+
8889
if !isfile(sbmlfile)
8990
Downloads.download(url, sbmlfile)
9091
end

test/loadmodels.jl

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -380,11 +380,10 @@ end
380380
@test test_math.args[1].args[2].id == "S1"
381381
@test test_math.args[2].id == "time"
382382

383-
test_math =
384-
readSBML(
385-
joinpath(@__DIR__, "data", "01565-sbml-l3v1.xml"),
386-
libsbml_convert("expandInitialAssignments"),
387-
).reactions["J31"].kinetic_math
383+
test_math = readSBML(
384+
joinpath(@__DIR__, "data", "01565-sbml-l3v1.xml"),
385+
libsbml_convert("expandInitialAssignments"),
386+
).reactions["J31"].kinetic_math
388387

389388
@test test_math.args[2].fn == "sin"
390389
@test test_math.args[2].args[1].val == 2.1

0 commit comments

Comments
 (0)