@@ -191,15 +191,15 @@ runs:
191191
192192 - name : Enable Node corepack
193193 if : inputs.enable-corepack == 'true'
194- uses : Lombiq/GitHub-Actions/.github/actions/enable-corepack@dev
194+ uses : Lombiq/GitHub-Actions/.github/actions/enable-corepack@issue/OSOE-1308
195195
196196 - name : Generate nuspec file if needed
197197 if : hashFiles('ConvertTo-Nuspec.ps1')
198198 shell : pwsh
199199 run : ./ConvertTo-Nuspec.ps1 '${{ steps.setup.outputs.publish-version }}'
200200
201201 - name : Build
202- uses : Lombiq/GitHub-Actions/.github/actions/build-dotnet@dev
202+ uses : Lombiq/GitHub-Actions/.github/actions/build-dotnet@issue/OSOE-1308
203203 # Notes on the configuration:
204204 # * -p:NuGetBuild=true is our property to load Lombiq dependencies from NuGet by switching project references
205205 # to package references.
@@ -306,38 +306,38 @@ runs:
306306 - name : Check for ignore-breaking-changes Label
307307 id : check-ignore-breaking
308308 if : ${{ (failure() || success()) && inputs.mark-breaking-changes == 'true' && github.event_name == 'pull_request' }}
309- uses : Lombiq/GitHub-Actions/.github/actions/check-pull-request-labels@dev
309+ uses : Lombiq/GitHub-Actions/.github/actions/check-pull-request-labels@issue/OSOE-1308
310310 with :
311311 label1 : ignore-breaking-changes
312312
313313 - name : Mark Breaking Changes on Pull Request
314314 if : ${{ (failure() || success()) &&
315315 inputs.mark-breaking-changes == 'true' &&
316316 github.event_name == 'pull_request' }}
317- uses : Lombiq/GitHub-Actions/.github/actions/mark-breaking-changes@dev
317+ uses : Lombiq/GitHub-Actions/.github/actions/mark-breaking-changes@issue/OSOE-1308
318318 with :
319319 is-breaking : ${{ steps.check-ignore-breaking.outputs.contains-label == 'true' && 'false' || steps.pack.outputs.is-breaking == 'true' }}
320320 env :
321321 GITHUB_TOKEN : ${{ env.GITHUB_TOKEN }}
322322
323323 - name : Upload NuGet Package Artifact
324- uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@dev
324+ uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@issue/OSOE-1308
325325 with :
326326 name : NuGet-Package
327327 path : artifacts
328328 retention-days : ${{ inputs.nuget-artifact-retention-days }}
329329
330330 - name : Upload CompatibilitySuppressions File Artifact
331331 if : success() || failure()
332- uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@dev
332+ uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@issue/OSOE-1308
333333 with :
334334 name : CompatibilitySuppressions
335335 path : CompatibilitySuppressions
336336 retention-days : 1
337337 if-no-files-found : ignore
338338
339339 - name : Create Release
340- uses : Lombiq/GitHub-Actions/.github/actions/release-action@dev
340+ uses : Lombiq/GitHub-Actions/.github/actions/release-action@issue/OSOE-1308
341341 # Also preventing creating releases when pushing tags for issue-specific pre-releases like v4.3.1-alpha.osoe-86.
342342 if : inputs.dry-run != 'true' && !contains(steps.setup.outputs.publish-version, '-')
343343 with :
0 commit comments