Skip to content

Commit

Permalink
build: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe committed Nov 18, 2024
1 parent b2c9686 commit 6f3c668
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/[email protected]
Expand All @@ -29,7 +29,7 @@ jobs:
dotnet build -c Release
- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ReleaseZip
path: ${{ env.ZIP_PATH }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/[email protected]
Expand All @@ -31,7 +31,7 @@ jobs:
dotnet build -c Release
- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ReleaseZip
path: ${{ env.ZIP_PATH }}
Expand All @@ -43,7 +43,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ReleaseZip
path: out
Expand All @@ -61,7 +61,7 @@ jobs:
out/autoSweep.json
- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ReleaseArtifact
path: out
Expand Down

0 comments on commit 6f3c668

Please sign in to comment.