Skip to content

Commit 38f1b69

Browse files
authored
Merge pull request #156 from Preocts/preocts
Bump github action versions
2 parents a37e532 + 2aa6155 commit 38f1b69

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.github/workflows/python-tests.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333

3434
steps:
3535
- name: "Repo checkout"
36-
uses: "actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9"
36+
uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
3737

3838
- name: "Set up Python ${{ matrix.python-version }}"
39-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
39+
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
4040
with:
4141
python-version: "${{ matrix.python-version }}"
4242
allow-prereleases: true
@@ -50,9 +50,9 @@ jobs:
5050
nox --session tests_with_coverage-${{ matrix.python-version }}
5151
5252
- name: "Save coverage artifact"
53-
uses: "actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce"
53+
uses: "actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3"
5454
with:
55-
name: "coverage-artifact"
55+
name: "coverage-artifact-${{ matrix.os}}-${{ matrix.python-version}}"
5656
path: ".coverage.*"
5757
retention-days: 1
5858

@@ -62,10 +62,10 @@ jobs:
6262
runs-on: "ubuntu-latest"
6363
steps:
6464
- name: "Repo checkout"
65-
uses: "actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9"
65+
uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
6666

6767
- name: "Set up Python"
68-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
68+
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
6969
with:
7070
python-version: "3.11"
7171

@@ -74,9 +74,10 @@ jobs:
7474
python -m pip install --upgrade pip nox
7575
7676
- name: "Download coverage artifacts"
77-
uses: "actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a"
77+
uses: "actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427"
7878
with:
79-
name: coverage-artifact
79+
pattern: "coverage-artifact-*"
80+
merge-multiple: true
8081

8182
- name: "Compile coverage data, print report"
8283
run: |
@@ -90,10 +91,10 @@ jobs:
9091
runs-on: "ubuntu-latest"
9192
steps:
9293
- name: "Repo checkout"
93-
uses: "actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9"
94+
uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
9495

9596
- name: "Set up Python"
96-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
97+
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
9798
with:
9899
python-version: "3.11"
99100

0 commit comments

Comments
 (0)