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

replaces deprecated v3 of artifact actions with v4 #1260

Merged
merged 11 commits into from
Mar 7, 2025
12 changes: 7 additions & 5 deletions .github/workflows/minio-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

# Upload the normal artifacts
- name: Upload the build output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: |
Expand All @@ -72,13 +72,15 @@ jobs:
**/*.csproj
**/*.key
**/*.crt
overwrite: true

# Upload the Nuget packages
- name: Upload the Nuget packages output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: ./artifacts/*
overwrite: true

format-check:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -123,7 +125,7 @@ jobs:

# Download the build artifacts
- name: Download the build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: .
Expand All @@ -150,7 +152,7 @@ jobs:

# Download the build artifacts
- name: Download the build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: .
Expand Down Expand Up @@ -191,7 +193,7 @@ jobs:
steps:
# Download the Nuget artifacts
- name: Download the Nuget artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: nuget-packages
path: ./artifacts
Expand Down