Skip to content

Commit c849077

Browse files
Bump the github-actions-deps group across 1 directory with 3 updates
Bumps the github-actions-deps group with 3 updates in the / directory: [ASFHyP3/actions](https://github.com/asfhyp3/actions), [actions/checkout](https://github.com/actions/checkout) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `ASFHyP3/actions` from 0.19.0 to 0.20.0 - [Release notes](https://github.com/asfhyp3/actions/releases) - [Changelog](https://github.com/ASFHyP3/actions/blob/develop/CHANGELOG.md) - [Commits](ASFHyP3/actions@v0.19.0...v0.20.0) Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: ASFHyP3/actions dependency-version: 0.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-deps - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-deps - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 28c8684 commit c849077

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
call-pytest-workflow:
15-
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.19.0
15+
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.20.0
1616
permissions:
1717
contents: read
1818
with:
@@ -21,15 +21,15 @@ jobs:
2121
["3.10", "3.11"]
2222
2323
call-version-info-workflow:
24-
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.19.0
24+
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.20.0
2525
permissions:
2626
contents: read
2727
with:
2828
python_version: "3.10"
2929

3030
call-docker-ghcr-workflow:
3131
needs: call-version-info-workflow
32-
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.19.0
32+
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.20.0
3333
permissions:
3434
contents: read
3535
packages: write

0 commit comments

Comments
 (0)