Skip to content

Commit cf6b214

Browse files
Bump the action-dependencies group with 3 updates
Bumps the action-dependencies group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/setup-python` from 5.1.1 to 5.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@39cd149...f677139) Updates `actions/upload-artifact` from 4.3.6 to 4.4.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@834a144...5076954) Updates `pypa/gh-action-pypi-publish` from 1.9.0 to 1.10.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@ec4db0b...8a08d61) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-dependencies - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b79717a commit cf6b214

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4242

4343
- name: Set up Python ${{ matrix.python-version }}
44-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f
44+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
4545
with:
4646
python-version: ${{ matrix.python-version }}
4747
cache: "pip"

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ref: ${{ github.event.workflow_run.head_branch }}
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
27+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
2828
with:
2929
python-version: '3.x'
3030

@@ -35,7 +35,7 @@ jobs:
3535
run: PIP_CONSTRAINT=requirements-build.txt python3 -m build --sdist --wheel --outdir dist/ .
3636

3737
- name: Store build artifacts
38-
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
38+
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
3939
# NOTE: The GitHub release page contains the release artifacts too, but using
4040
# GitHub upload/download actions seems robuster: there is no need to compute
4141
# download URLs and tampering with artifacts between jobs is more limited.
@@ -101,7 +101,7 @@ jobs:
101101
- name: Publish binary wheel and source tarball on PyPI
102102
# Only attempt pypi upload in upstream repository
103103
if: github.repository == 'secure-systems-lab/securesystemslib'
104-
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
104+
uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
105105

106106
- name: Finalize GitHub release
107107
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1

.github/workflows/test-kms-aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f
15+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
1616
with:
1717
python-version: '3.x'
1818
cache: 'pip'

.github/workflows/test-kms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f
23+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
2424
with:
2525
python-version: '3.x'
2626
cache: 'pip'

.github/workflows/test-sigstore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f
21+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
2222
with:
2323
python-version: '3.x'
2424
cache: 'pip'

.github/workflows/test-vault.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f
15+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
1616
with:
1717
python-version: '3.x'
1818
cache: 'pip'

0 commit comments

Comments
 (0)