Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: ./src/build.ps1 -configuration ${{ env.Configuration }}

- name: Upload Cody.VisualStudio.vsix artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The upgrade to v6 requires Actions Runner version 2.327.1 or higher (runs on Node.js 24). If using GitHub-hosted runners, this is fine. If using self-hosted runners, verify they meet this requirement before merging to avoid workflow failures.

with:
name: Cody.VisualStudio.vsix
path: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix
Expand All @@ -71,7 +71,7 @@ jobs:
run: dotnet test src/*Tests/bin/${{ env.Configuration }}/*.Tests.dll --logger:trx --verbosity detailed

- name: Upload screenshots for UI tests
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: UI Tests Screenshots
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: ./src/build.ps1 -configuration ${{ env.Configuration }}

- name: Upload Cody.VisualStudio.vsix artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: Cody.VisualStudio.vsix
path: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix
Expand All @@ -82,7 +82,7 @@ jobs:
run: dotnet test src/*Tests/bin/${{ env.Configuration }}/*.Tests.dll --logger:trx --verbosity detailed

- name: Upload screenshots for UI tests
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: UI Tests Screenshots
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: ./src/build.ps1 -configuration ${{ env.Configuration }}

- name: Upload Cody.VisualStudio.vsix artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: Cody.VisualStudio.vsix
path: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix
Expand All @@ -101,7 +101,7 @@ jobs:
run: dotnet test src/*Tests/bin/${{ env.Configuration }}/*.Tests.dll --logger:trx --verbosity detailed

- name: Upload screenshots for UI tests
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: UI Tests Screenshots
Expand Down
Loading