Skip to content

Commit

Permalink
Merge pull request #487 from karaoke-dev/github-actions-bump
Browse files Browse the repository at this point in the history
Update github actions to resolve most node deprecation warnings.
  • Loading branch information
andy840119 authored Sep 14, 2024
2 parents d9db2f1 + da9b8c5 commit 94ab3f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
shell: powershell
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set Artifacts Directory
id: artifactsPath
run: echo "::set-output name=NUGET_ARTIFACTS::${{github.workspace}}\artifacts"

- name: Install .NET 8.0.x
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"

Expand All @@ -58,7 +58,7 @@ jobs:
run: dotnet pack -c Release osu.Framework.Font /p:Version=${{needs.check-if-tag.outputs.version}} /p:GenerateDocumentationFile=true -o ${{steps.artifactsPath.outputs.nuget_artifacts}}

- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: osu-framework
path: ${{steps.artifactsPath.outputs.nuget_artifacts}}\*.nupkg
Expand All @@ -72,7 +72,7 @@ jobs:
run: mkdir ${{github.workspace}}/artifacts/

- name: Download Artifacts
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
path: ${{github.workspace}}/artifacts/

Expand Down

0 comments on commit 94ab3f8

Please sign in to comment.