Skip to content

Commit

Permalink
Using hashes for all actions (#81)
Browse files Browse the repository at this point in the history
* Use full commit SHAs for all GitHub actions as described in SPEC 8.
  • Loading branch information
bsipocz authored Jun 6, 2024
1 parent a5d8097 commit 39001e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
if: github.repository == 'scientific-python/upload-nightly-action'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: '3.x'

Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:

steps:
- name: Install micromamba and anaconda-client
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 # v1.9.0
with:
environment-name: remove-wheels
create-args: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/keep-alive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

- name: Create a minimal payload
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Install micromamba and anaconda-client
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 # v1.9.0
with:
environment-name: remove-wheels
create-args: >-
Expand Down

0 comments on commit 39001e5

Please sign in to comment.