Skip to content

Commit 3f77bab

Browse files
authored
Merge pull request #87 from ReactiveBayes/dependabot/github_actions/actions/checkout-6
build(deps): bump actions/checkout from 5 to 6
2 parents 44f2a9e + 92d1b54 commit 3f77bab

3 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
@@ -38,7 +38,7 @@ jobs:
3838
arch:
3939
- x64
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
- uses: julia-actions/setup-julia@v2
4343
with:
4444
include-all-prereleases: true
@@ -62,7 +62,7 @@ jobs:
6262
contents: write
6363
statuses: write
6464
steps:
65-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6666
- uses: julia-actions/setup-julia@v2
6767
with:
6868
version: '1.11'

.github/workflows/IntegrationTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- { user: ReactiveBayes, repo: RxInfer.jl }
2626

2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929

3030
- uses: julia-actions/setup-julia@v2
3131
with:
@@ -35,7 +35,7 @@ jobs:
3535
- uses: julia-actions/julia-buildpkg@v1
3636

3737
- name: Clone Downstream
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
4141
path: downstream

test/manopt/bounded_norm_update_rule_tests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
for limit in (1, 1.0, 1.0f0), p in (zeros(Float64, 3), zeros(Float32, 3))
8383
cpa = DefaultManoptProblem(M, ManifoldGradientObjective(f, grad_f))
8484
gst = GradientDescentState(M; p = zero(p))
85-
@test_opt BoundedNormUpdateRule(limit)(cpa, gst, 1)
86-
@test_opt BoundedNormUpdateRule(static(limit))(cpa, gst, 1)
87-
@test_opt BoundedNormUpdateRule(
85+
@test_opt target_modules=(ExponentialFamilyProjection,) BoundedNormUpdateRule(limit)(cpa, gst, 1)
86+
@test_opt target_modules=(ExponentialFamilyProjection,) BoundedNormUpdateRule(static(limit))(cpa, gst, 1)
87+
@test_opt target_modules=(ExponentialFamilyProjection,) BoundedNormUpdateRule(
8888
static(limit);
8989
direction = BoundedNormUpdateRule(limit),
9090
)(

0 commit comments

Comments
 (0)