Skip to content

Commit b2a5c2b

Browse files
authored
Hash-pin all actions (#2331)
1 parent 98cf181 commit b2a5c2b

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

.github/actions/apply-single-tags/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
variant: ${{ inputs.variant }}
2424

2525
- name: Download tags file 📥
26-
uses: actions/download-artifact@v5
26+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
2727
with:
2828
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}-tags
2929
path: /tmp/jupyter/tags/

.github/actions/create-dev-env/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
using: composite
66
steps:
77
- name: Set Up Python 🐍
8-
uses: actions/setup-python@v6
8+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
99
with:
1010
python-version: 3.12
1111

.github/actions/load-image/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
using: composite
1717
steps:
1818
- name: Download built image 📥
19-
uses: actions/download-artifact@v5
19+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
2020
with:
2121
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}
2222
path: /tmp/jupyter/images/

.github/workflows/contributed-recipes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
matrix: ${{ steps.set-matrix.outputs.matrix }}
4242
steps:
4343
- name: Checkout Repo ⚡️
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4545

4646
- name: Calculate recipes matrix 🛠
4747
id: set-matrix
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: Checkout Repo ⚡️
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6161

6262
- name: Load image to Docker 📥
6363
if: ${{ inputs.called-using-workflow-call && matrix.parent-image != '' }}

.github/workflows/docker-build-test-upload.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
swap-storage: false
6262

6363
- name: Checkout Repo ⚡️
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6565
- name: Create dev environment 📦
6666
uses: ./.github/actions/create-dev-env
6767

@@ -102,7 +102,7 @@ jobs:
102102
--tags-dir /tmp/jupyter/tags/
103103
shell: bash
104104
- name: Upload tags file 💾
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
106106
with:
107107
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}-tags
108108
path: /tmp/jupyter/tags/${{ inputs.platform }}-${{ inputs.variant }}-${{ inputs.image }}.txt
@@ -120,13 +120,13 @@ jobs:
120120
--repository ${{ github.repository }}
121121
shell: bash
122122
- name: Upload manifest file 💾
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
124124
with:
125125
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}-manifest
126126
path: /tmp/jupyter/manifests/${{ inputs.platform }}-${{ inputs.variant }}-${{ inputs.image }}-*.md
127127
retention-days: 3
128128
- name: Upload build history line 💾
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
130130
with:
131131
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}-history_line
132132
path: /tmp/jupyter/hist_lines/${{ inputs.platform }}-${{ inputs.variant }}-${{ inputs.image }}-*.txt
@@ -140,7 +140,7 @@ jobs:
140140
| zstd > /tmp/jupyter/images/${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}.tar.zst
141141
shell: bash
142142
- name: Upload image as artifact 💾
143-
uses: actions/upload-artifact@v4
143+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
144144
with:
145145
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}
146146
path: /tmp/jupyter/images/${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}.tar.zst

.github/workflows/docker-tag-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
swap-storage: false
4848

4949
- name: Checkout Repo ⚡️
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5151
- name: Create dev environment 📦
5252
uses: ./.github/actions/create-dev-env
5353

.github/workflows/docker-wiki-update.yml

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

1919
steps:
2020
- name: Checkout Repo ⚡️
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222
with:
2323
fetch-depth: 0
2424
- name: Create dev environment 📦
2525
uses: ./.github/actions/create-dev-env
2626

2727
- name: Download all history lines 📥
28-
uses: actions/download-artifact@v5
28+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
2929
with:
3030
pattern: "*-history_line"
3131
path: /tmp/jupyter/hist_lines/
3232

3333
- name: Download all manifests 📥
34-
uses: actions/download-artifact@v5
34+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
3535
with:
3636
pattern: "*-manifest"
3737
path: /tmp/jupyter/manifests/
3838

3939
- name: Checkout Wiki Repo 📃
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4141
with:
4242
repository: ${{ github.repository }}.wiki
4343
path: wiki_src/

.github/workflows/pre-commit.yml

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

1818
steps:
1919
- name: Checkout Repo ⚡️
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121

2222
- name: Set Up Python 🐍
23-
uses: actions/setup-python@v6
23+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2424
with:
2525
python-version: 3.12
2626

.github/workflows/registry-move.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout Repo ⚡️
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131

3232
- name: Install skopeo and Docker 📦
3333
run: |

.github/workflows/registry-overviews.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout Repo ⚡️
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828

2929
- name: Push README to Registry 🐳
3030
uses: christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8 # v1

0 commit comments

Comments
 (0)