Skip to content

Commit 82d79e7

Browse files
dependencies: (deps): bump & HARDEN the actions group across 2 directories with 5 updates (pyOpenSci#128)
* dependencies: (deps): bump the actions group across 2 directories with 5 updates Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Bumps the actions group with 5 updates in the /template/{% if use_git and dev_platform == 'GitHub' %}.github{% endif %}/workflows directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [pypa/hatch](https://github.com/pypa/hatch) | `a3c83ab3d481fbc2dc91dd0088628817488dd1d5` | `257e27e51a6a5616ed08a39a408a21c35c9931bc` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | 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 `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) 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 `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `pypa/hatch` from a3c83ab3d481fbc2dc91dd0088628817488dd1d5 to 257e27e51a6a5616ed08a39a408a21c35c9931bc - [Release notes](https://github.com/pypa/hatch/releases) - [Commits](pypa/hatch@a3c83ab...257e27e) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/hatch dependency-version: 257e27e51a6a5616ed08a39a408a21c35c9931bc dependency-type: direct:production dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * Apply suggestion from @lwasser * Apply suggestion from @lwasser * Apply suggestion from @lwasser * Apply suggestion from @lwasser * Apply suggestion from @lwasser * Apply suggestion from @lwasser * Fix checkout and setup-python action references --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Leah Wasser <leah@pyopensci.org>
1 parent e7924fa commit 82d79e7

File tree

2 files changed

+7
-7
lines changed
  • .github/workflows
  • template/{% if use_git and dev_platform == 'GitHub' %}.github{% endif %}/workflows

2 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
python-version: ["3.10", "3.13"]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

template/{% if use_git and dev_platform == 'GitHub' %}.github{% endif %}/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
# Environment is encouraged for increased security
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
1919
with:
2020
# This fetch element is only important if you are use SCM based
2121
# versioning (that looks at git tags to gather the version).
2222
# setuptools-scm needs tags to form a valid version number
2323
fetch-tags: true
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
2727
with:
2828
# You can modify what version of Python you want to use for your release
2929
python-version: "3.11"
3030

3131
# Security recommends we should pin deps. Should we pin the workflow version?
3232
- name: Install hatch
33-
uses: pypa/hatch@a3c83ab3d481fbc2dc91dd0088628817488dd1d5
33+
uses: pypa/hatch@257e27e51a6a5616ed08a39a408a21c35c9931bc
3434

3535
- name: Build package using Hatch
3636
run: |
@@ -41,7 +41,7 @@ jobs:
4141
4242
# Store an artifact of the build to use in the publish step below
4343
- name: Store the distribution packages
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
4545
with:
4646
name: python-package-distributions
4747
path: dist/
@@ -63,7 +63,7 @@ jobs:
6363
id-token: write # this permission is mandatory for PyPI publishing
6464
steps:
6565
- name: Download dists
66-
uses: actions/download-artifact@v4
66+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v4
6767
with:
6868
name: python-package-distributions
6969
path: dist/

0 commit comments

Comments
 (0)