Skip to content

Commit 6dc57c9

Browse files
authored
Merge branch 'main' into efficient-loading
2 parents 66a2835 + 5645101 commit 6dc57c9

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
python-version: [ "3.9", "3.10", "3.11" ]
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: actions/setup-python@v6
1818
with:
1919
python-version: ${{ matrix.python-version }}

.github/workflows/draft-pdf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
name: Paper Draft
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v5
9+
uses: actions/checkout@v6
1010
- name: Build draft PDF
1111
uses: openjournals/openjournals-draft-action@master
1212
with:
1313
journal: joss
1414
# This should be the path to the paper within your repo.
1515
paper-path: docs/paper/paper.md
1616
- name: Upload
17-
uses: actions/upload-artifact@v4
17+
uses: actions/upload-artifact@v5
1818
with:
1919
name: paper
2020
# This is the output path where Pandoc will write the compiled

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
name: Build source distribution
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313

1414
- name: Build sdist
1515
run: |
1616
python -m pip install --upgrade build
1717
python -m build
1818
19-
- uses: actions/upload-artifact@v4
19+
- uses: actions/upload-artifact@v5
2020
with:
2121
path: dist/wsimod*
2222

@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Download sdist artifact
36-
uses: actions/download-artifact@v5
36+
uses: actions/download-artifact@v6
3737
with:
3838
name: artifact
3939
path: dist
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353

5454
- uses: actions/setup-python@v6
5555
with:
@@ -74,7 +74,7 @@ jobs:
7474
DAFNI_PASSWORD: ${{ secrets.DAFNI_PASSWORD }}
7575
PARENT_ID: ${{ vars.PARENT_ID }}
7676
steps:
77-
- uses: actions/checkout@v5
77+
- uses: actions/checkout@v6
7878
- uses: actions/setup-python@v6
7979

8080
- name: Create Docker image

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ repos:
55
- id: check-merge-conflict
66
- id: debug-statements
77
- repo: https://github.com/psf/black-pre-commit-mirror
8-
rev: "25.9.0"
8+
rev: "25.11.0"
99
hooks:
1010
- id: black
1111
- repo: https://github.com/astral-sh/ruff-pre-commit
12-
rev: 'v0.14.2'
12+
rev: 'v0.14.7'
1313
hooks:
1414
- id: ruff
1515
args: [--fix, --exit-non-zero-on-fix]
@@ -18,7 +18,7 @@ repos:
1818
# hooks:
1919
# - id: mypy
2020
- repo: https://github.com/igorshubovych/markdownlint-cli
21-
rev: v0.45.0
21+
rev: v0.46.0
2222
hooks:
2323
- id: markdownlint-fix
2424
args: ["--ignore", "docs/component-library.md", "--disable", "MD013", "MD033", "--"]

0 commit comments

Comments
 (0)