Skip to content

Commit af927e3

Browse files
authored
Using hashes for all actions (#210)
1 parent ad88224 commit af927e3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci_tests_run_notebooks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
os: ubuntu-latest
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
5050
- name: Set up Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d #v5.1.0
5252
with:
5353
python-version: ${{ matrix.python-version }}
5454

.github/workflows/circleci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Run CircleCI artifacts redirector
66
steps:
77
- name: GitHub Action step
8-
uses: larsoner/circleci-artifacts-redirector-action@master
8+
uses: larsoner/circleci-artifacts-redirector-action@4e13a10d89177f4bfc8007a7064bdbeda848d8d1 # v1.0.0
99
with:
1010
repo-token: ${{ secrets.GITHUB_TOKEN }}
1111
api-token: ${{ secrets.CIRCLE_TOKEN }}

.github/workflows/conda.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
shell: bash -l {0}
2525

2626
steps:
27-
- uses: actions/checkout@v4
28-
- uses: conda-incubator/setup-miniconda@v3
27+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
28+
- uses: conda-incubator/setup-miniconda@a4260408e20b96e80095f42ff7f1a15b27dd94ca # v3.0.4
2929
with:
3030
auto-update-conda: true
3131
activate-environment: numpy-tutorials
@@ -43,7 +43,7 @@ jobs:
4343
conda list
4444
make -C site/ SPHINXOPTS="-nWT --keep-going" html
4545
46-
- uses: actions/upload-artifact@v3
46+
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
4747
with:
4848
name: sphinx-build-artifact
4949
path: site/_build/html/reports

0 commit comments

Comments
 (0)