Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
16 changes: 8 additions & 8 deletions .github/workflows/TestJuliaVersions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-noble]
julia-version: ['1.10.0', 'nightly']

steps:
Expand All @@ -21,23 +21,23 @@ jobs:
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v5


- name: Cache preCICE
id: cache-libprecice
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: libprecice3_3.1.0_focal.deb
key: libprecice3_3.1.0_focal.deb1
restore-keys: libprecice3_3.1.0_focal.deb1
path: libprecice3_3.3.0_noble.deb
key: libprecice3_3.3.0_noble.deb1
restore-keys: libprecice3_3.3.0_noble.deb1

- name: Download preCICE
if: steps.cache-libprecice.outputs.cache-hit != 'true'
run: wget https://github.com/precice/precice/releases/download/v3.1.0/libprecice3_3.1.0_focal.deb
run: wget https://github.com/precice/precice/releases/download/v3.3.0/libprecice3_3.3.0_noble.deb

- name: Install preCICE
run: sudo apt install ./libprecice3_3.1.0_focal.deb
run: sudo apt install ./libprecice3_3.3.0_noble.deb

- name: Build Package
uses: julia-actions/julia-buildpkg@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
version: ${{ matrix.julia-version }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build Package
uses: julia-actions/julia-buildpkg@v1
Expand All @@ -45,7 +45,7 @@ jobs:
with:
version: ${{ matrix.julia-version }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build Package
uses: julia-actions/julia-buildpkg@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
version: ${{ matrix.julia-version }}

- uses: actions/checkout@v1
- uses: actions/checkout@v5
- name: Install JuliaFormatter and format
# This will use the latest version by default but you can set the version like so:
#
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PreCICE"
uuid = "57fbd4af-5cc3-4712-aac0-6930e7658184"
authors = ["preCICE <https://precice.org/> and contributors"]
version = "3.1.0"
version = "3.3.0"

[compat]
julia = "1.10"
Expand Down
Loading