Skip to content

Commit 70b55b8

Browse files
Bump the all-github-actions group with 2 updates (#1174)
* Bump the all-github-actions group with 2 updates Bumps the all-github-actions group with 2 updates: [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) and [crate-ci/typos](https://github.com/crate-ci/typos). Updates `julia-actions/setup-julia` from 2 to 3 - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](julia-actions/setup-julia@v2...v3) Updates `crate-ci/typos` from 1.44.0 to 1.46.0 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.44.0...v1.46.0) --- updated-dependencies: - dependency-name: julia-actions/setup-julia dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: crate-ci/typos dependency-version: 1.46.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <support@github.com> * Fix typo in info message for ParticlePackingSystem * Fix typo in log message for ParticlePackingSystem * Remove log message for missing SignedDistanceField Removed info log about missing SignedDistanceField. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sven Berger <berger.sven@gmail.com>
1 parent d83705e commit 70b55b8

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/Documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Check out project
3434
uses: actions/checkout@v6
3535
- name: Set up Julia
36-
uses: julia-actions/setup-julia@v2
36+
uses: julia-actions/setup-julia@v3
3737
with:
3838
version: '1'
3939
show-versioninfo: true

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Check out project
1616
uses: actions/checkout@v6
1717
- name: Set up Julia
18-
uses: julia-actions/setup-julia@v2
18+
uses: julia-actions/setup-julia@v3
1919
with:
2020
version: '1'
2121
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'

.github/workflows/Invalidations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.base_ref == github.event.repository.default_branch
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: julia-actions/setup-julia@v2
19+
- uses: julia-actions/setup-julia@v3
2020
with:
2121
# TODO: Is broken in 1.11 revert to 1 after fix
2222
version: '1.10'

.github/workflows/SpellCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
- name: Checkout Actions Repository
1111
uses: actions/checkout@v6
1212
- name: Check spelling
13-
uses: crate-ci/typos@v1.44.0
13+
uses: crate-ci/typos@v1.46.0

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v6
6565

6666
- name: Set up Julia
67-
uses: julia-actions/setup-julia@v2
67+
uses: julia-actions/setup-julia@v3
6868
with:
6969
version: ${{ matrix.version }}
7070

test/systems/packing_system.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
signed_distance_field=nothing,
4646
background_pressure=1.0)
4747
show_box = """
48-
[ Info: No `SignedDistanceField` provided. Particles will not be constraint onto a geoemtric surface.
4948
┌──────────────────────────────────────────────────────────────────────────────────────────────────┐
5049
│ ParticlePackingSystem{2} │
5150
│ ════════════════════════ │
@@ -55,5 +54,6 @@
5554
│ place_on_shell: ……………………………………… no │
5655
│ boundary: ……………………………………………………… no │
5756
└──────────────────────────────────────────────────────────────────────────────────────────────────┘"""
57+
@test repr("text/plain", system) == show_box
5858
end
5959
end

0 commit comments

Comments
 (0)