Skip to content

Commit f420f3c

Browse files
fix: actions (#286)
# Pull Request ## Description upload-artifact has been deprecated and needs updating ## License By submitting this pull request, I confirm that my contribution is made under the terms of the projects associated license.
1 parent 82d4cba commit f420f3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/Prerelease.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
shell: pwsh
3939
run: Invoke-Build -File .\src\ALZ.build.ps1
4040
- name: Upload pester results
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: pester-results
4444
path: .\src\Artifacts\testOutput
4545
if-no-files-found: warn
4646
- name: Upload zip module archive build
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: zip-archive
5050
path: .\src\Archive

.github/workflows/Release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
shell: pwsh
3636
run: Invoke-Build -File .\src\ALZ.build.ps1
3737
- name: Upload pester results
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: pester-results
4141
path: .\src\Artifacts\testOutput
4242
if-no-files-found: warn
4343
- name: Upload zip module archive build
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: zip-archive
4747
path: .\src\Archive

0 commit comments

Comments
 (0)