Skip to content

Commit d30dd15

Browse files
committed
Update github action versions
1 parent db35bd1 commit d30dd15

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/python-tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: "python tests and coverage"
22
# Uses:
3-
# https://github.com/actions/setup-python
4-
# https://github.com/actions/checkout
5-
# https://github.com/actions/download-artifact
6-
# https://github.com/actions/upload-artifact
3+
# https://github.com/actions/setup-python : 0b93645e9fea7318ecaed2b359559ac225c90a2b
4+
# https://github.com/actions/checkout : 11bd71901bbe5b1630ceea73d27597364c9af683
5+
# https://github.com/actions/download-artifact : fa0a91b85d4f404e444e00e005971372dc801d16
6+
# https://github.com/actions/upload-artifact : 6f51ac03b9356f520e9adb1b1b7802705f340c2b
77

88
on:
99
pull_request:
@@ -33,10 +33,10 @@ jobs:
3333

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

3838
- name: "Set up Python ${{ matrix.python-version }}"
39-
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
39+
uses: "actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
4040
with:
4141
python-version: "${{ matrix.python-version }}"
4242
allow-prereleases: true
@@ -50,7 +50,7 @@ jobs:
5050
nox --session tests_with_coverage-${{ matrix.python-version }}
5151
5252
- name: "Save coverage artifact"
53-
uses: "actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3"
53+
uses: "actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b"
5454
with:
5555
name: "coverage-artifact-${{ matrix.os}}-${{ matrix.python-version}}"
5656
path: ".coverage.*"
@@ -62,10 +62,10 @@ jobs:
6262
runs-on: "ubuntu-latest"
6363
steps:
6464
- name: "Repo checkout"
65-
uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
65+
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
6666

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

@@ -74,7 +74,7 @@ jobs:
7474
python -m pip install --upgrade pip nox
7575
7676
- name: "Download coverage artifacts"
77-
uses: "actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427"
77+
uses: "actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16"
7878
with:
7979
pattern: "coverage-artifact-*"
8080
merge-multiple: true
@@ -91,10 +91,10 @@ jobs:
9191
runs-on: "ubuntu-latest"
9292
steps:
9393
- name: "Repo checkout"
94-
uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
94+
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
9595

9696
- name: "Set up Python"
97-
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
97+
uses: "actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
9898
with:
9999
python-version: "3.12"
100100

0 commit comments

Comments
 (0)