Skip to content

Commit c59d9f2

Browse files
Pin dependencies (#29)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 436d632 commit c59d9f2

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/bump-asf-reference.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ jobs:
2525

2626
steps:
2727
- name: Checkout code
28-
uses: actions/[email protected]
28+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2929
with:
3030
show-progress: false
3131
token: ${{ env.PUSH_GITHUB_TOKEN }}
3232

3333
- name: Fetch latest ArchiSteamFarm release
3434
id: asf-release
35-
uses: rez0n/[email protected]
35+
uses: rez0n/actions-github-release@27a57820ee808f8fd940c8a9d1f7188f854aa2b5 # v2.0
3636
env:
3737
repository: JustArchiNET/ArchiSteamFarm
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939
type: ${{ env.RELEASE_TYPE }}
4040

4141
- name: Import GPG key for signing
42-
uses: crazy-max/[email protected]
42+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6.3.0
4343
if: ${{ env.GPG_PRIVATE_KEY != null }}
4444
with:
4545
gpg_private_key: ${{ env.GPG_PRIVATE_KEY }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222

2323
steps:
2424
- name: Checkout code
25-
uses: actions/[email protected]
25+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626
with:
2727
show-progress: false
2828
submodules: recursive
2929

3030
- name: Setup .NET Core
31-
uses: actions/[email protected]
31+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
3232
with:
3333
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
3434

.github/workflows/publish.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/[email protected]
29+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3030
with:
3131
show-progress: false
3232
submodules: recursive
3333

3434
- name: Setup .NET Core
35-
uses: actions/[email protected]
35+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
3636
with:
3737
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
3838

@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Parse plugin name from Directory.Build.props
4343
id: plugin-name
44-
uses: mavrosxristoforos/[email protected]
44+
uses: mavrosxristoforos/get-xml-info@afaa5058ead44cfaff92c6a861b46dd7a8929f60 # 2.0
4545
with:
4646
xml-file: 'Directory.Build.props'
4747
xpath: '//PluginName'
@@ -129,7 +129,7 @@ jobs:
129129
}
130130
131131
- name: Upload plugin artifact
132-
uses: actions/[email protected]
132+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
133133
with:
134134
if-no-files-found: error
135135
name: ${{ matrix.os }}_${{ steps.plugin-name.outputs.info }}
@@ -145,18 +145,18 @@ jobs:
145145

146146
steps:
147147
- name: Checkout code
148-
uses: actions/[email protected]
148+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
149149
with:
150150
show-progress: false
151151

152152
- name: Download plugin artifact from ubuntu-latest
153-
uses: actions/[email protected]
153+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
154154
with:
155155
name: ubuntu-latest_${{ needs.publish.outputs.PLUGIN_NAME }}
156156
path: out
157157

158158
- name: Import GPG key for signing
159-
uses: crazy-max/[email protected]
159+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6.3.0
160160
if: ${{ env.GPG_PRIVATE_KEY != null }}
161161
with:
162162
gpg_private_key: ${{ env.GPG_PRIVATE_KEY }}
@@ -177,22 +177,22 @@ jobs:
177177
)
178178
179179
- name: Upload SHA512SUMS
180-
uses: actions/[email protected]
180+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
181181
with:
182182
if-no-files-found: error
183183
name: SHA512SUMS
184184
path: out/SHA512SUMS
185185

186186
- name: Upload SHA512SUMS.sign
187-
uses: actions/[email protected]
187+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
188188
if: ${{ env.GPG_PRIVATE_KEY != null }}
189189
with:
190190
if-no-files-found: error
191191
name: SHA512SUMS.sign
192192
path: out/SHA512SUMS.sign
193193

194194
- name: Create GitHub release
195-
uses: ncipollo/[email protected]
195+
uses: ncipollo/release-action@bcfe5470707e8832e12347755757cec0eb3c22af # v1.18.0
196196
with:
197197
allowUpdates: true
198198
artifactErrorsFailBuild: true

0 commit comments

Comments
 (0)