Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Commit 7a767cf

Browse files
author
root
committed
Pin github actions
1 parent 43c0077 commit 7a767cf

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/pydocs-preview.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ref: ${{ github.event.pull_request.head.sha }}
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2
2424
with:
2525
python-version: '3.9'
2626
architecture: 'x64'
@@ -37,7 +37,7 @@ jobs:
3737
pydoc-markdown -vv
3838
3939
- name: Upload markdown artifacts
40-
uses: actions/upload-artifact@v2
40+
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # v2
4141
with:
4242
name: docs-dir
4343
path: docs/
@@ -49,12 +49,12 @@ jobs:
4949

5050
steps:
5151
- name: Checkout docs repository
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
5353
with:
5454
repository: 'PaloAltoNetworks/cortex.pan.dev'
5555

5656
- name: Download markdown artifacts
57-
uses: actions/download-artifact@v2
57+
uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # v2
5858
with:
5959
name: docs-dir
6060
path: docs/
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Create Pull Request
7272
id: pydocs
73-
uses: peter-evans/create-pull-request@v3
73+
uses: peter-evans/create-pull-request@18f7dc018cc2cd597073088f7c7591b9d1c02672 # v3
7474
with:
7575
token: ${{ secrets.PYDOC_TOKEN }}
7676
commit-message: Update pydocs

.github/workflows/pydocs-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v2
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2
2222
with:
2323
python-version: '3.9'
2424
architecture: 'x64'
@@ -33,7 +33,7 @@ jobs:
3333
run: |
3434
pydoc-markdown -vv
3535
- name: Upload markdown artifacts
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # v2
3737
with:
3838
name: docs-dir
3939
path: docs/
@@ -45,12 +45,12 @@ jobs:
4545

4646
steps:
4747
- name: Checkout docs repository
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
4949
with:
5050
repository: 'PaloAltoNetworks/cortex.pan.dev'
5151

5252
- name: Download markdown artifacts
53-
uses: actions/download-artifact@v2
53+
uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # v2
5454
with:
5555
name: docs-dir
5656
path: docs/
@@ -65,7 +65,7 @@ jobs:
6565
git status
6666
- name: Create Pull Request
6767
id: pydocs
68-
uses: peter-evans/create-pull-request@v3
68+
uses: peter-evans/create-pull-request@18f7dc018cc2cd597073088f7c7591b9d1c02672 # v3
6969
with:
7070
token: ${{ secrets.PYDOC_TOKEN }}
7171
commit-message: 🐍 Update pydocs

.github/workflows/pypi_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
if: github.repository_owner == 'PaloAltoNetworks'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
1313
- name: Set up Python
14-
uses: actions/setup-python@v1
14+
uses: actions/setup-python@0f07f7f756721ebd886c2462646a35f78a8bc4de # v1
1515
with:
1616
python-version: '3.x'
1717
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v1
22+
uses: actions/setup-python@0f07f7f756721ebd886c2462646a35f78a8bc4de # v1
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install dependencies

0 commit comments

Comments
 (0)