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
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload failed benchmark artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-benchmark-${{ matrix.os }}-${{ matrix.python-version }}-${{ github.run_id }}
path: autotest/.failed/**

- name: Upload benchmark result artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: benchmarks-${{ matrix.os }}-${{ matrix.python-version }}-${{ github.run_id }}
path: autotest/.benchmarks/*.json
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload benchmark results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: benchmarks-${{ github.run_id }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload failed test outputs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-smoke-${{ runner.os }}-${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
run: pixi run --manifest-path=../../modflow6/pixi.toml coverage report

- name: Upload failed test outputs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-${{ matrix.os }}-${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload failed test outputs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-example-${{ matrix.os }}-${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fi

- name: Upload removed dependencies log
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: smoke-test-removed-dependencies
path: ./removed_dependencies.txt
Expand All @@ -67,7 +67,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload failed test outputs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-smoke-${{ runner.os }}-${{ env.PYTHON_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload failed test outputs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-outputs-${{ github.run_id }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
sed -i '1i # Changelog' $clog

- name: Upload changelog
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: changelog
path: CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rtd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch'
)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: notebooks-for-${{ needs.set_options.outputs.sha }}
path: flopy/.docs/Notebooks/*.ipynb
Expand Down
Loading