Skip to content

Commit

Permalink
updated outdated github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
chcg committed Mar 7, 2025
1 parent 30124a1 commit 588b6cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
uses: microsoft/setup-msbuild@v2

- name: Add nmake
if: matrix.build_platform == 'ARM64'
Expand Down Expand Up @@ -44,21 +44,21 @@ jobs:
- name: Archive artifacts for x64
if: matrix.build_platform == 'x64'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gup_exe_x64
path: bin64\

- name: Archive artifacts for x86
if: matrix.build_platform == 'x86'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gup_exe_x86
path: bin\

- name: Archive artifacts for ARM64
if: matrix.build_platform == 'ARM64'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gup_exe_arm64
path: binarm64\

0 comments on commit 588b6cc

Please sign in to comment.