Skip to content

Commit 80aa37b

Browse files
chore(deps): bump the all-actions group with 4 updates (#96)
* chore(deps): bump the all-actions group with 4 updates Bumps the all-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/checkout` from 3.5.3 to 4.1.6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@c85c95e...a5ac7e5) Updates `actions/setup-python` from 4.7.0 to 5.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@61a6322...82c7e63) Updates `codecov/codecov-action` from 2.1.0 to 4.4.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@f32b3a3...125fc84) Updates `pypa/gh-action-pypi-publish` from 1.8.8 to 1.8.14 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@f8c70e7...81e9d93) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com> * chore(actions): add semver to github actions --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Leon Hazen <leon.hazen@stax.io>
1 parent 6f145f0 commit 80aa37b

2 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,17 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Clone Repository
15-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
15+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # 4.1.6
1616
- name: Setup Python 3.9
17-
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
17+
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0
1818
with:
1919
python-version: '3.9'
2020
- name: Install dependencies
2121
run: make install
2222
- name: Run tests
2323
run: make test
2424
- name: Upload coverage to Codecov 📝
25-
# https://github.com/codecov/codecov-action codecov/2.1.0
26-
# Pinned this to a git sha as per recommendations in GitHub actions hardening guide.
27-
# see https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
28-
uses: "codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b"
25+
uses: "codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c" # 4.4.1
2926
with:
3027
fail_ci_if_error: true
3128
files: ./coverage-reports/coverage-report.xml

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Clone Repository
13-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
13+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # 4.1.6
1414
- name: Setup Python 3.9
15-
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
15+
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0
1616
with:
1717
python-version: '3.9'
1818
- name: Install dependencies
@@ -24,12 +24,12 @@ jobs:
2424
pipenv run python setup.py sdist bdist_wheel
2525
- name: Publish distribution 📦 to Test PyPI
2626
if: github.event.release.prerelease == true
27-
uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8
27+
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 # 1.8.14
2828
with:
2929
password: ${{ secrets.TEST_PYPI_PASSWORD }}
3030
repository_url: https://test.pypi.org/legacy/
3131
- name: Publish distribution 📦 to PyPI
3232
if: github.event.release.prerelease != true
33-
uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8
33+
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 # 1.8.14
3434
with:
3535
password: ${{ secrets.PYPI_PASSWORD }}

0 commit comments

Comments
 (0)