Skip to content

Commit a7b618f

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 3.6.0 to 4.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@f43a0e5...3df4ab1) Updates `actions/upload-artifact` from 3.1.2 to 3.1.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@0b7f8ab...a8a3f3a) Updates `actions/cache` from 3.3.1 to 3.3.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@88522ab...704facf) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 96c4ec5 commit a7b618f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
hash: ${{ steps.hash.outputs.hash }}
1111
steps:
12-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
12+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
1313
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
1414
with:
1515
python-version: '3.x'
@@ -23,7 +23,7 @@ jobs:
2323
- name: generate hash
2424
id: hash
2525
run: cd dist && echo "hash=$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT
26-
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
26+
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
2727
with:
2828
path: ./dist
2929
provenance:

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
- {name: '3.8', python: '3.8', tox: py38}
3232
- {name: 'Typing', python: '3.11', tox: typing}
3333
steps:
34-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
34+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
3535
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
3636
with:
3737
python-version: ${{ matrix.python }}
3838
cache: 'pip'
3939
cache-dependency-path: 'requirements/*.txt'
4040
- name: cache mypy
41-
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
41+
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
4242
with:
4343
path: ./.mypy_cache
4444
key: mypy|${{ matrix.python }}|${{ hashFiles('requirements/mypy.txt') }}

0 commit comments

Comments
 (0)