Skip to content

Commit aeccf7d

Browse files
authored
chore: pin GitHub Actions to SHA hashes for security (#25)
Pinned by pinact v3.10.0
1 parent 380ab22 commit aeccf7d

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: windows-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919

2020
- name: Setup .NET
21-
uses: actions/setup-dotnet@v5
21+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
2222
with:
2323
dotnet-version: 10.0.x
2424

@@ -27,7 +27,7 @@ jobs:
2727
dotnet publish --runtime win-x64 -c Release -o "output/win-x64"
2828
2929
- name: Upload Windows Artifact
30-
uses: actions/upload-artifact@v7
30+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3131
with:
3232
name: win-x64-artifact
3333
path: output/win-x64/koji-stream-player.exe
@@ -37,10 +37,10 @@ jobs:
3737
runs-on: macos-latest
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v6
40+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4141

4242
- name: Setup .NET
43-
uses: actions/setup-dotnet@v5
43+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
4444
with:
4545
dotnet-version: 10.0.x
4646

@@ -53,7 +53,7 @@ jobs:
5353
codesign --deep --force --verify --sign - output/osx-arm64/koji-stream-player
5454
5555
- name: Upload macOS Artifact
56-
uses: actions/upload-artifact@v7
56+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5757
with:
5858
name: osx-arm64-artifact
5959
path: output/osx-arm64/koji-stream-player
@@ -65,19 +65,19 @@ jobs:
6565
needs: [build-windows, build-macos]
6666
steps:
6767
- name: Download Windows Artifact
68-
uses: actions/download-artifact@v8
68+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
6969
with:
7070
name: win-x64-artifact
7171
path: output/win-x64/
7272

7373
- name: Download macOS Artifact
74-
uses: actions/download-artifact@v8
74+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
7575
with:
7676
name: osx-arm64-artifact
7777
path: output/osx-arm64/
7878

7979
- name: Create GitHub Release and Upload Artifacts
80-
uses: softprops/action-gh-release@v3
80+
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
8181
with:
8282
tag_name: "latest-${{ github.sha }}"
8383
name: "Auto-release"

0 commit comments

Comments
 (0)