Skip to content

Commit 15f8935

Browse files
Build(deps): Bump the actions-version group with 2 updates (#846)
Bumps the actions-version group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/checkout` from 4.1.7 to 4.2.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@692973e...d632683) Updates `pypa/gh-action-pypi-publish` from 1.10.1 to 1.10.2 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@0ab0b79...897895f) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-version - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ce3f3d4 commit 15f8935

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish-packages.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Check out repo
20-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
20+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2121
with:
2222
submodules: "recursive"
2323
- name: Set up Python
@@ -61,12 +61,12 @@ jobs:
6161
path: dist/
6262
- name: Publish package to TestPyPI
6363
if: ${{ inputs.upload_to_test }}
64-
uses: pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241 # v1.10.1
64+
uses: pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # v1.10.2
6565
with:
6666
repository_url: https://test.pypi.org/legacy/
6767
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
6868
- name: Publish package to PyPI
6969
if: ${{ !inputs.upload_to_test }}
70-
uses: pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241 # v1.10.1
70+
uses: pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # v1.10.2
7171
with:
7272
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/run-pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
python: '3.12'
3737
dependencies: 'newest'
3838
steps:
39-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
39+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4040
with:
4141
submodules: "recursive"
4242
- name: Set up Python ${{ matrix.python }}

0 commit comments

Comments
 (0)