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
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: astral-sh/setup-uv@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: astral-sh/setup-uv@v7
Expand All @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -123,12 +123,12 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: flopy

- name: Checkout MODFLOW 6
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: MODFLOW-ORG/modflow6
path: modflow6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/mf6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
steps:

- name: Checkout flopy repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: flopy

- name: Checkout MODFLOW 6
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: MODFLOW-ORG/modflow6
path: modflow6
Expand Down Expand Up @@ -99,18 +99,18 @@ jobs:
steps:

- name: Checkout flopy repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: flopy

- name: Checkout MODFLOW 6
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: MODFLOW-ORG/modflow6
path: modflow6

- name: Checkout MF6 examples
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: MODFLOW-ORG/modflow6-examples
path: modflow6-examples
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: astral-sh/setup-uv@v7
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:

- name: Checkout release branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
steps:

- name: Checkout release branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.ref_name }}

Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
steps:

- name: Checkout master branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: master

Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
steps:

- name: Checkout master branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: master

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rtd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "ref=$ref" >> $GITHUB_OUTPUT

- name: Checkout flopy repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ steps.set_ref.outputs.ref }}

Expand Down Expand Up @@ -68,13 +68,13 @@ jobs:

steps:
- name: Checkout flopy repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.set_options.outputs.ref }}
path: flopy

- name: Checkout MODFLOW 6
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: MODFLOW-ORG/modflow6
path: modflow6
Expand Down
Loading