Skip to content

Commit 1a38d0d

Browse files
authored
[Infra] replace 'tag' style actions version with the latest hash (#67)
1 parent a43a70f commit 1a38d0d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/snap-evaluate-version.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ jobs:
2020
actions: write
2121
contents: read
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2424
with:
2525
fetch-depth: 0
2626
fetch-tags: true
2727

28-
- uses: gittools/actions/gitversion/setup@v4
28+
- uses: gittools/actions/gitversion/setup@b82e662a7199df56ac962118e506d9efb9830f82
2929
with:
3030
versionSpec: '6.x'
3131

3232
- name: Evaluate semantic version
3333
id: gv
34-
uses: gittools/actions/gitversion/execute@v4
34+
uses: gittools/actions/gitversion/execute@b82e662a7199df56ac962118e506d9efb9830f82
3535
with:
3636
configFilePath: GitVersion.yaml
3737

3838
- name: Show semantic version metadata
3939
run: |
4040
echo "${{ toJson(steps.gv.outputs) }}"
4141
42-
- uses: astral-sh/setup-uv@v3
42+
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4
4343

4444
- name: Normalize version to comply with PEP 440
4545
id: nv
@@ -55,7 +55,7 @@ jobs:
5555
echo "version=$VERSION_PEP440" >> "$GITHUB_OUTPUT"
5656
5757
- name: Trigger snap build
58-
uses: actions/github-script@v7
58+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
5959
with:
6060
script: |
6161
const version = "${{ steps.nv.outputs.version }}";

.github/workflows/snap.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ jobs:
2222
set-version:
2323
runs-on: ubuntu-24.04
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2626
with:
2727
ref: ${{ inputs.commit_sha }}
2828

29-
- uses: astral-sh/setup-uv@v3
29+
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4
3030

3131
- name: Set version
3232
run: uv version "${{ inputs.version }}" --frozen
3333

3434
- name: Upload updated project files
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
3636
with:
3737
name: updated-project-files
3838
path: |
@@ -47,7 +47,7 @@ jobs:
4747
ref: ${{ inputs.commit_sha }}
4848

4949
- name: Download updated project files
50-
uses: actions/download-artifact@v4
50+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
5151
with:
5252
name: updated-project-files
5353
path: .
@@ -73,7 +73,7 @@ jobs:
7373
ref: ${{ inputs.commit_sha }}
7474

7575
- name: Download updated project files
76-
uses: actions/download-artifact@v4
76+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
7777
with:
7878
name: updated-project-files
7979
path: .

.github/workflows/tics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
mv ./coverage.xml ./coverage/cobertura.xml
6060
6161
- name: TICS GitHub Action
62-
uses: tiobe/tics-github-action@v3
62+
uses: tiobe/tics-github-action@009979693978bfefad2ad15c1020066694968dc7
6363
with:
6464
mode: qserver
6565
project: yarf

.github/workflows/yarf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: |
7474
uv tool run tox
7575
- name: Upload Coverage Report
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
7777
with:
7878
name: coverage
7979
path: ./coverage.xml

0 commit comments

Comments
 (0)