Skip to content

Commit 27c4fc9

Browse files
committed
Replaced actions/checkout@v4, actions/setup-python@v5, actions/upload-artifact@v7 and actions/download-artifact@v8 with a full-length commit SHA.
Signed-off-by: Chin Yeung Li <tli@nexb.com>
1 parent bc26aa1 commit 27c4fc9

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docs-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818

1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

.github/workflows/pypi-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
runs-on: ubuntu-24.04
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828
- name: Set up Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
3030
with:
3131
python-version: 3.13
3232

@@ -37,7 +37,7 @@ jobs:
3737
run: python -m build --sdist --wheel --outdir dist/
3838

3939
- name: Upload built archives
40-
uses: actions/upload-artifact@v7
40+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4141
with:
4242
name: pypi_archives
4343
path: dist/*
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Download built archives
54-
uses: actions/download-artifact@v8
54+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
5555
with:
5656
name: pypi_archives
5757
path: dist
@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Download built archives
78-
uses: actions/download-artifact@v8
78+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
7979
with:
8080
name: pypi_archives
8181
path: dist/

.github/workflows/run-unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2222

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

0 commit comments

Comments
 (0)