Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve Dependabot PR
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/draft-pdf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
paper-path: docs/paper.md
- name: Upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: paper
path: docs/paper.pdf
6 changes: 3 additions & 3 deletions .github/workflows/python-package-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
run: |
brew update
brew install graphviz
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: ๐Ÿ Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.0"
- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-package-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
steps:
- name: ๐Ÿ•ธ๏ธ Install Graphviz
run: sudo apt-get install graphviz
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: ๐Ÿ Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.0"
- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-package-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
steps:
- name: ๐Ÿ•ธ๏ธ Install Graphviz
run: choco install graphviz
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: ๐Ÿ Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.0"
- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
Expand Down
Loading