Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-actions group with 2 updates #249

Merged
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ jobs:

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

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

- name: Download nupkg
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: nupkg
path: .nuget
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:

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

steps:
- name: Download nupkg
uses: actions/[email protected].0
uses: actions/[email protected].1
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 @@ -45,7 +45,7 @@ jobs:
- run: dotnet r pack -- --no-build

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

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