Skip to content

Commit

Permalink
Bump actions/upload-artifact and download-artifact from 3 to 4. (#1160)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot].
  • Loading branch information
MoFtZ authored Feb 1, 2024
1 parent d4c37aa commit 2506984
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ jobs:
dotnet pack Src --configuration=Release @params
- name: Upload NuGet package artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: ./Bin/Release/ILGPU*.${{ needs.check-version.outputs.version }}.*nupkg
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
# Verify that the sample projects can compile after switching to NuGet references
- name: Download NuGet package artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: nuget-packages
path: local-nuget-packages
Expand All @@ -323,7 +323,7 @@ jobs:
# Upload samples artifact (for version tags and master branch only)
- name: Upload Samples artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.event_name == 'push' && !github.event.repository.fork && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
with:
name: samples
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download NuGet package artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: nuget-packages
- name: Publish to FeedzIO
Expand All @@ -371,11 +371,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download NuGet package artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: nuget-packages
- name: Download Samples artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: samples

Expand Down

0 comments on commit 2506984

Please sign in to comment.