Skip to content

Commit abfc6c3

Browse files
authored
Merge pull request #301 from ASFHyP3/dependabot/github_actions/github-actions-deps-1780c308f8
Bump the github-actions-deps group across 1 directory with 3 updates
2 parents 28c8684 + 511adb7 commit abfc6c3

File tree

9 files changed

+17
-16
lines changed

9 files changed

+17
-16
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
- develop
1212
jobs:
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

.github/workflows/create-jira-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
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 }}

.github/workflows/distribute.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
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

@@ -17,7 +17,7 @@ jobs:
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

@@ -31,7 +31,7 @@ jobs:
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 }}

.github/workflows/labeled-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ on:
1212

1313
jobs:
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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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 }}

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: push
55
jobs:
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

.github/workflows/tag-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ on:
77

88
jobs:
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 }}

.github/workflows/test-and-build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ name: Test and build
33
on:
44
push:
55
branches:
6-
- main
76
- develop
7+
tags:
8+
- 'v*'
89
pull_request:
910
branches:
1011
- main
1112
- develop
1213

1314
jobs:
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

src/asf_tools/tile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)