@@ -246,12 +246,12 @@ jobs:
246
246
# This has to be the first step so it can collect data about the whole workflow run.
247
247
- name : Collect Workflow Telemetry
248
248
if : inputs.collect-workflow-telemetry == 'true'
249
- uses : Lombiq/GitHub-Actions/.github/actions/workflow-telemetry@dev
249
+ uses : Lombiq/GitHub-Actions/.github/actions/workflow-telemetry@v2.0.0
250
250
with :
251
251
github_token : ${{ secrets.CHECKOUT_TOKEN }}
252
252
253
253
- name : Set Environment Variables
254
- uses : Lombiq/GitHub-Actions/.github/actions/set-environment-variables@dev
254
+ uses : Lombiq/GitHub-Actions/.github/actions/set-environment-variables@v2.0.0
255
255
env :
256
256
ENVIRONMENT_VARIABLES_JSON : ${{ secrets.ENVIRONMENT_VARIABLES_JSON }}
257
257
@@ -267,30 +267,30 @@ jobs:
267
267
Write-Output $message
268
268
269
269
- name : Checkout
270
- uses : Lombiq/GitHub-Actions/.github/actions/checkout@dev
270
+ uses : Lombiq/GitHub-Actions/.github/actions/checkout@v2.0.0
271
271
with :
272
272
repository : ${{ inputs.repository }}
273
273
ref : ${{ inputs.repository-ref }}
274
274
token : ${{ secrets.CHECKOUT_TOKEN }}
275
275
276
276
- name : Set up .NET
277
- uses : Lombiq/GitHub-Actions/.github/actions/setup-dotnet@dev
277
+ uses : Lombiq/GitHub-Actions/.github/actions/setup-dotnet@v2.0.0
278
278
with :
279
279
dotnet-version : ${{ inputs.dotnet-version }}
280
280
281
281
- name : Verify that .NET packages are consolidated
282
282
if : ${{ inputs.verify-dotnet-consolidation }}
283
- uses : Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@dev
283
+ uses : Lombiq/GitHub-Actions/.github/actions/verify-dotnet-consolidation@v2.0.0
284
284
with :
285
285
directory : ${{ inputs.build-directory }}
286
286
exclude-version-regex : ${{ inputs.dotnet-consolidation-exclude-version-regex }}
287
287
exclude-project-path : ${{ inputs.dotnet-consolidation-exclude-project-path }}
288
288
289
289
- name : Enable Node.js corepack
290
- uses : Lombiq/GitHub-Actions/.github/actions/enable-corepack@dev
290
+ uses : Lombiq/GitHub-Actions/.github/actions/enable-corepack@v2.0.0
291
291
292
292
- name : Build and Static Code Analysis
293
- uses : Lombiq/GitHub-Actions/.github/actions/build-dotnet@dev
293
+ uses : Lombiq/GitHub-Actions/.github/actions/build-dotnet@v2.0.0
294
294
with :
295
295
directory : ${{ inputs.build-directory }}
296
296
configuration : ${{ inputs.build-configuration}}
@@ -306,25 +306,25 @@ jobs:
306
306
307
307
- name : Print configuration summary
308
308
if : inputs.print-config-summary == 'true' && (success() || failure())
309
- uses : Lombiq/GitHub-Actions/.github/actions/print-config-summary@dev
309
+ uses : Lombiq/GitHub-Actions/.github/actions/print-config-summary@v2.0.0
310
310
311
311
- name : Set up SQL Server
312
312
if : inputs.set-up-sql-server == 'true'
313
- uses : Lombiq/GitHub-Actions/.github/actions/setup-sql-server@dev
313
+ uses : Lombiq/GitHub-Actions/.github/actions/setup-sql-server@v2.0.0
314
314
315
315
- name : Set up Elasticsearch
316
316
if : inputs.set-up-elasticsearch == 'true'
317
- uses : Lombiq/GitHub-Actions/.github/actions/setup-elasticsearch@dev
317
+ uses : Lombiq/GitHub-Actions/.github/actions/setup-elasticsearch@v2.0.0
318
318
319
319
- name : Set up Azurite
320
320
if : inputs.set-up-azurite == 'true'
321
- uses : Lombiq/GitHub-Actions/.github/actions/setup-azurite@dev
321
+ uses : Lombiq/GitHub-Actions/.github/actions/setup-azurite@v2.0.0
322
322
with :
323
323
location : ${{ inputs.build-directory}}
324
324
325
325
- name : Tests
326
326
if : inputs.test-disable == 'false'
327
- uses : Lombiq/GitHub-Actions/.github/actions/test-dotnet@dev
327
+ uses : Lombiq/GitHub-Actions/.github/actions/test-dotnet@v2.0.0
328
328
with :
329
329
blame-hang-timeout : ${{ inputs.blame-hang-timeout }}
330
330
build-directory : ${{ inputs.build-directory }}
@@ -339,6 +339,6 @@ jobs:
339
339
340
340
- name : Cancel Workflow on Failure
341
341
if : failure() && inputs.cancel-workflow-on-failure == 'true'
342
- uses : Lombiq/GitHub-Actions/.github/actions/cancel-workflow@dev
342
+ uses : Lombiq/GitHub-Actions/.github/actions/cancel-workflow@v2.0.0
343
343
env :
344
344
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments