Skip to content

Commit

Permalink
Merge pull request #112 from Sergio0694/dev/update-github-actions
Browse files Browse the repository at this point in the history
Update GitHub Actions to latest stable
  • Loading branch information
Sergio0694 authored Nov 15, 2024
2 parents bd2fd88 + 9d280bf commit d519f71
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
runs-on: windows-2022
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: dotnet build -c ${{matrix.configuration}} /bl
- name: Upload MSBuild binary log
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: msbuild_log_${{matrix.configuration}}
path: msbuild.binlog
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run unit tests
run: dotnet test -c Release

Expand All @@ -58,11 +58,11 @@ jobs:
runs-on: windows-2022
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build PolySharp package
run: dotnet build src\PolySharp.Package\PolySharp.Package.msbuildproj -c Release
- name: Upload package artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nuget_packages
path: artifacts\*.nupkg
Expand All @@ -77,11 +77,11 @@ jobs:
runs-on: windows-2022
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create local NuGet feed
run: mkdir artifacts
- name: Download package artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: nuget_packages
path: artifacts
Expand Down

0 comments on commit d519f71

Please sign in to comment.