Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 3 to 4 (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Feb 6, 2025
1 parent 7871755 commit 4d5b4d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ex-rtd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
run: python ci_create_examples_rst.py

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rtd-files-for-${{ needs.set_options.outputs.sha }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ex-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
shell: python

- name: Upload zipfile
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.DISTNAME }}.zip
path: modflow6-examples/${{ env.DISTNAME }}.zip
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

- name: Upload PDF document
if: matrix.python == '3.9'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.DISTNAME}}.pdf
path: modflow6-examples/${{ env.DISTNAME }}.pdf
Expand Down
2 changes: 1 addition & 1 deletion scripts/ex-gwe-radial.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def create_outer_ring_of_ctrl_vols(outer_v, verts, iverts, xc, yc, ivt, idx):
# For each outer point, create a new ivert
# Starts at 9 o'clock and proceeds counter-clockwise
# As such, 'pt3' will be used by the subsequent iverts
# However, 'pt4' will be re-used by each subseqeuent ivert
# However, 'pt4' will be reused by each subseqeuent ivert
pt3_id = pt3_rad = pt3_ang = None
for ii in np.arange(len(outer_v) - 1):
# Create all the points involved
Expand Down

0 comments on commit 4d5b4d3

Please sign in to comment.