Skip to content

Commit 5e6bebb

Browse files
committed
fix: pin SHA for artifact actions
1 parent c21e51c commit 5e6bebb

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build_app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ jobs:
9292
echo " language: auto" >> dist\user_data\config.yml
9393
echo " log_level: info" >> dist\user_data\config.yml
9494
- name: create and upload portable zip
95-
uses: actions/upload-artifact@v7
95+
uses: "actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
9696
with:
9797
name: portable_basiliskLLM_${{ steps.get_variables.outputs.version_number }}_${{ runner.os }}_${{ steps.get_variables.outputs.arch }}
9898
path: ${{ github.workspace }}/repo/dist/*
9999
if-no-files-found: error
100100
retention-days: 30
101101
- name: upload installer
102-
uses: actions/upload-artifact@v7
102+
uses: "actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
103103
with:
104104
name: setup_basiliskLLM_${{ steps.get_variables.outputs.version_number }}_${{ runner.os }}_${{ steps.get_variables.outputs.arch }}
105105
path: ${{ github.workspace }}/repo/output_setup/*

.github/workflows/create_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id: get_release_name
1919
run: echo "release_name=$(echo ${{ inputs.ref_name }} | cut -c 2-) ($(date '+%Y-%m-%d'))" >> "$GITHUB_OUTPUT"
2020
- name: download app portable
21-
uses: actions/download-artifact@v8
21+
uses: "actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
2222
with:
2323
pattern: portable_basiliskLLM_*
2424
path: portable_app
@@ -33,13 +33,13 @@ jobs:
3333
echo "::endgroup::"
3434
done
3535
- name: download app installer
36-
uses: actions/download-artifact@v8
36+
uses: "actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
3737
with:
3838
pattern: setup_basiliskLLM_*
3939
path: installer
4040
merge-multiple: true
4141
- name: download POT file
42-
uses: actions/download-artifact@v8
42+
uses: "actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
4343
with:
4444
name: basiliskLLM.pot
4545
- name: create release

.github/workflows/localization.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: build POT file
3232
run: uv run setup.py extract_messages
3333
- name: upload POT file
34-
uses: actions/upload-artifact@v7
34+
uses: "actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
3535
with:
3636
name: basiliskLLM.pot
3737
path: basiliskLLM.pot
@@ -49,7 +49,7 @@ jobs:
4949
- name: checkout repository
5050
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
5151
- name: download translations template artifact
52-
uses: actions/download-artifact@v8
52+
uses: "actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
5353
with:
5454
name: basiliskLLM.pot
5555
path: ./translations

0 commit comments

Comments
 (0)