Skip to content

Commit 5caeab6

Browse files
author
James Brundage
committed
fix: PublishTestResults step - using upload-artifact@main ( Fixes #6 )
1 parent c424ad7 commit 5caeab6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/Build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
}
104104
} @Parameters
105105
- name: PublishTestResults
106-
uses: actions/upload-artifact@v3
106+
uses: actions/upload-artifact@main
107107
with:
108108
name: PesterResults
109109
path: '**.TestResults.xml'

Build/GitHub/Steps/PublishTestResults.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
name = 'PublishTestResults'
3-
uses = 'actions/upload-artifact@v3'
3+
uses = 'actions/upload-artifact@main'
44
with = @{
55
name = 'PesterResults'
66
path = '**.TestResults.xml'

0 commit comments

Comments
 (0)