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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v5.0.0

- name: Install Node
uses: actions/setup-node@v5.0.0
uses: actions/setup-node@v6.0.0
with:
node-version-file: .nvmrc

Expand Down Expand Up @@ -87,14 +87,14 @@ jobs:

- name: Upload artifacts
if: matrix.os == 'ubuntu-24.04'
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: nupkg
path: ./artifacts/*.nupkg

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: build-verify-test-results
path: |
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
nuget_auth_token: ${{ secrets.GITHUB_TOKEN }}

- name: Download nupkg
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0
with:
name: nupkg
path: .nuget
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: integration-verify-test-results
path: |
Expand All @@ -223,7 +223,7 @@ jobs:

steps:
- name: Download nupkg
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0
with:
name: nupkg

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- run: dotnet r pack -- --no-build

- name: Upload artifacts
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: nupkg
path: ./artifacts/*.nupkg
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: verify-test-results
path: |
Expand Down
Loading