File tree Expand file tree Collapse file tree 9 files changed +17
-16
lines changed
Expand file tree Collapse file tree 9 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 1111 - develop
1212jobs :
1313 call-changelog-check-workflow :
14- uses : ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.19 .0
14+ uses : ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.20 .0
Original file line number Diff line number Diff line change 66
77jobs :
88 call-create-jira-issue-workflow :
9- uses : ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.19 .0
9+ uses : ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.20 .0
1010 secrets :
1111 JIRA_BASE_URL : ${{ secrets.JIRA_BASE_URL }}
1212 JIRA_USER_EMAIL : ${{ secrets.JIRA_USER_EMAIL }}
Original file line number Diff line number Diff line change 77
88jobs :
99 call-version-info-workflow :
10- uses : ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.19 .0
10+ uses : ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.20 .0
1111 with :
1212 python_version : " 3.11"
1313
1717 run :
1818 shell : bash -l {0}
1919 steps :
20- - uses : actions/checkout@v4
20+ - uses : actions/checkout@v5
2121 with :
2222 fetch-depth : 0
2323
3131 python -m build
3232
3333 - name : upload to PyPI.org
34- uses : pypa/gh-action-pypi-publish@v1.12.4
34+ uses : pypa/gh-action-pypi-publish@v1.13.0
3535 with :
3636 user : __token__
3737 password : ${{ secrets.TOOLS_PYPI_PAK }}
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 call-labeled-pr-check-workflow :
15- uses : ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.19 .0
15+ uses : ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.20 .0
Original file line number Diff line number Diff line change 99 finish :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
12+ - uses : actions/checkout@v5
1313 with :
1414 fetch-depth : 0
1515 token : ${{ secrets.TOOLS_BOT_PAK }}
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ on: push
55jobs :
66 # Docs: https://github.com/ASFHyP3/actions
77 call-secrets-analysis-workflow :
8- uses : ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.19 .0
8+ uses : ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.20 .0
99
1010 call-ruff-workflow :
11- uses : ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.19 .0
11+ uses : ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.20 .0
1212
1313 call-mypy-workflow :
14- uses : ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.19 .0
14+ uses : ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.20 .0
Original file line number Diff line number Diff line change 77
88jobs :
99 call-bump-version-workflow :
10- uses : ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.19 .0
10+ uses : ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.20 .0
1111 secrets :
1212 USER_TOKEN : ${{ secrets.TOOLS_BOT_PAK }}
Original file line number Diff line number Diff line change @@ -3,16 +3,17 @@ name: Test and build
33on :
44 push :
55 branches :
6- - main
76 - develop
7+ tags :
8+ - ' v*'
89 pull_request :
910 branches :
1011 - main
1112 - develop
1213
1314jobs :
1415 call-pytest-workflow :
15- uses : ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.19 .0
16+ uses : ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.20 .0
1617 permissions :
1718 contents : read
1819 with :
@@ -21,15 +22,15 @@ jobs:
2122 ["3.10", "3.11"]
2223
2324 call-version-info-workflow :
24- uses : ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.19 .0
25+ uses : ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.20 .0
2526 permissions :
2627 contents : read
2728 with :
2829 python_version : " 3.10"
2930
3031 call-docker-ghcr-workflow :
3132 needs : call-version-info-workflow
32- uses : ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.19 .0
33+ uses : ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.20 .0
3334 permissions :
3435 contents : read
3536 packages : write
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ def untile_array(
129129
130130 if isinstance (tiled_array , np .ma .MaskedArray ):
131131 assert len (untiled .shape ) == 2
132- untiled_mask = untile_array (tiled_array .mask , untiled .shape )
132+ untiled_mask = untile_array (tiled_array .mask , untiled .shape ) # type: ignore[arg-type]
133133 untiled = np .ma .MaskedArray (untiled , mask = untiled_mask )
134134
135135 return untiled [:array_rows , :array_columns ]
You can’t perform that action at this time.
0 commit comments