@@ -154,15 +154,15 @@ runs:
154154
155155 - name : Enable Node corepack
156156 if : inputs.enable-corepack == 'true'
157- uses : Lombiq/GitHub-Actions/.github/actions/enable-corepack@issue/OSOE-1265
157+ uses : Lombiq/GitHub-Actions/.github/actions/enable-corepack@dev
158158
159159 - name : Generate nuspec file if needed
160160 if : hashFiles('ConvertTo-Nuspec.ps1')
161161 shell : pwsh
162162 run : ./ConvertTo-Nuspec.ps1 '${{ steps.setup.outputs.publish-version }}'
163163
164164 - name : Build
165- uses : Lombiq/GitHub-Actions/.github/actions/build-dotnet@issue/OSOE-1265
165+ uses : Lombiq/GitHub-Actions/.github/actions/build-dotnet@dev
166166 # Notes on the configuration:
167167 # * -p:NuGetBuild=true is our property to load Lombiq dependencies from NuGet by switching project references
168168 # to package references.
@@ -269,38 +269,38 @@ runs:
269269 - name : Check for ignore-breaking-changes Label
270270 id : check-ignore-breaking
271271 if : ${{ (failure() || success()) && inputs.mark-breaking-changes == 'true' && github.event_name == 'pull_request' }}
272- uses : Lombiq/GitHub-Actions/.github/actions/check-pull-request-labels@issue/OSOE-1265
272+ uses : Lombiq/GitHub-Actions/.github/actions/check-pull-request-labels@dev
273273 with :
274274 label1 : ignore-breaking-changes
275275
276276 - name : Mark Breaking Changes on Pull Request
277277 if : ${{ (failure() || success()) &&
278278 inputs.mark-breaking-changes == 'true' &&
279279 github.event_name == 'pull_request' }}
280- uses : Lombiq/GitHub-Actions/.github/actions/mark-breaking-changes@issue/OSOE-1265
280+ uses : Lombiq/GitHub-Actions/.github/actions/mark-breaking-changes@dev
281281 with :
282282 is-breaking : ${{ steps.check-ignore-breaking.outputs.contains-label == 'true' && 'false' || steps.pack.outputs.is-breaking == 'true' }}
283283 env :
284284 GITHUB_TOKEN : ${{ env.GITHUB_TOKEN }}
285285
286286 - name : Upload NuGet Package Artifact
287- uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@issue/OSOE-1265
287+ uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@dev
288288 with :
289289 name : NuGet-Package
290290 path : artifacts
291291 retention-days : ${{ inputs.nuget-artifact-retention-days }}
292292
293293 - name : Upload CompatibilitySuppressions File Artifact
294294 if : success() || failure()
295- uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@issue/OSOE-1265
295+ uses : Lombiq/GitHub-Actions/.github/actions/upload-artifact@dev
296296 with :
297297 name : CompatibilitySuppressions
298298 path : CompatibilitySuppressions
299299 retention-days : 1
300300 if-no-files-found : ignore
301301
302302 - name : Create Release
303- uses : Lombiq/GitHub-Actions/.github/actions/release-action@issue/OSOE-1265
303+ uses : Lombiq/GitHub-Actions/.github/actions/release-action@dev
304304 # Also preventing creating releases when pushing tags for issue-specific pre-releases like v4.3.1-alpha.osoe-86.
305305 if : inputs.dry-run != 'true' && !contains(steps.setup.outputs.publish-version, '-')
306306 with :
0 commit comments