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
6 changes: 3 additions & 3 deletions .github/workflows/apisec-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
fi

- name: Upload NuGet audit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: nuget-security-audit
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
pkill -f "Avro.Mcp.Example" || true

- name: Upload security scan results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: security-scan-results
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
cat security-summary.md

- name: Upload security summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: security-scan-summary
path: security-summary.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mcp-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
find . -name "*.dll" -not -path "*/obj/*" -not -path "*/bin/Debug/*" > compile_commands.json

- name: Upload MCP server artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: mcp-server-artifacts
path: |
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
run: dotnet nuget add source --username 606 --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/606/index.json"

- name: Archive NuGet packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: mcp-packages
path: ./nupkg/*.nupkg
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Archive Release packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-packages
path: ./release-packages/*.nupkg
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sdk-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
find . -name "*.dll" -not -path "*/obj/*" -not -path "*/bin/Debug/*" > compile_commands.json

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sdk-build-artifacts
path: |
Expand Down Expand Up @@ -175,14 +175,14 @@ jobs:
done

- name: Archive NuGet packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nuget-packages
path: ./nupkg/*.nupkg
retention-days: 7

- name: Upload Package Verification
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nuget-verification
path: |
Expand Down
Loading