Skip to content

Commit be6d596

Browse files
Update actions/upload-artifact action to v5
1 parent e3c00d9 commit be6d596

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: ./src/build.ps1 -configuration ${{ env.Configuration }}
5555

5656
- name: Upload Cody.VisualStudio.vsix artifact
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
name: Cody.VisualStudio.vsix
6060
path: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix
@@ -71,7 +71,7 @@ jobs:
7171
run: dotnet test src/*Tests/bin/${{ env.Configuration }}/*.Tests.dll --logger:trx --verbosity detailed
7272

7373
- name: Upload screenshots for UI tests
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v5
7575
if: always()
7676
with:
7777
name: UI Tests Screenshots

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: ./src/build.ps1 -configuration ${{ env.Configuration }}
6565

6666
- name: Upload Cody.VisualStudio.vsix artifact
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v5
6868
with:
6969
name: Cody.VisualStudio.vsix
7070
path: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix
@@ -82,7 +82,7 @@ jobs:
8282
run: dotnet test src/*Tests/bin/${{ env.Configuration }}/*.Tests.dll --logger:trx --verbosity detailed
8383

8484
- name: Upload screenshots for UI tests
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
if: always()
8787
with:
8888
name: UI Tests Screenshots

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: ./src/build.ps1 -configuration ${{ env.Configuration }}
8484

8585
- name: Upload Cody.VisualStudio.vsix artifact
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: Cody.VisualStudio.vsix
8989
path: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix
@@ -101,7 +101,7 @@ jobs:
101101
run: dotnet test src/*Tests/bin/${{ env.Configuration }}/*.Tests.dll --logger:trx --verbosity detailed
102102

103103
- name: Upload screenshots for UI tests
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v5
105105
if: always()
106106
with:
107107
name: UI Tests Screenshots

0 commit comments

Comments
 (0)