Skip to content

Commit 4d5b4d3

Browse files
build(deps): bump actions/upload-artifact from 3 to 4 (#135)
1 parent 7871755 commit 4d5b4d3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ex-rtd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
run: python ci_create_examples_rst.py
158158

159159
- name: Upload artifacts
160-
uses: actions/upload-artifact@v3
160+
uses: actions/upload-artifact@v4
161161
with:
162162
name: rtd-files-for-${{ needs.set_options.outputs.sha }}
163163
path: |

.github/workflows/ex-workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
shell: python
108108

109109
- name: Upload zipfile
110-
uses: actions/upload-artifact@v3
110+
uses: actions/upload-artifact@v4
111111
with:
112112
name: ${{ env.DISTNAME }}.zip
113113
path: modflow6-examples/${{ env.DISTNAME }}.zip
@@ -201,7 +201,7 @@ jobs:
201201

202202
- name: Upload PDF document
203203
if: matrix.python == '3.9'
204-
uses: actions/upload-artifact@v3
204+
uses: actions/upload-artifact@v4
205205
with:
206206
name: ${{ env.DISTNAME}}.pdf
207207
path: modflow6-examples/${{ env.DISTNAME }}.pdf

scripts/ex-gwe-radial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def create_outer_ring_of_ctrl_vols(outer_v, verts, iverts, xc, yc, ivt, idx):
183183
# For each outer point, create a new ivert
184184
# Starts at 9 o'clock and proceeds counter-clockwise
185185
# As such, 'pt3' will be used by the subsequent iverts
186-
# However, 'pt4' will be re-used by each subseqeuent ivert
186+
# However, 'pt4' will be reused by each subseqeuent ivert
187187
pt3_id = pt3_rad = pt3_ang = None
188188
for ii in np.arange(len(outer_v) - 1):
189189
# Create all the points involved

0 commit comments

Comments
 (0)