From 25850cd74b1ce94bb99665afcba51aacc884abd6 Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 31 Dec 2023 18:15:52 +0800 Subject: [PATCH] Test newer GH Actions Dependencies --- .github/workflows/compile_main_branches.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compile_main_branches.yml b/.github/workflows/compile_main_branches.yml index a765808..6721033 100644 --- a/.github/workflows/compile_main_branches.yml +++ b/.github/workflows/compile_main_branches.yml @@ -27,12 +27,12 @@ jobs: os: macos-latest arch: arm64 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Clone submodules run: git submodule init && git submodule update - name: Compile ${{ matrix.prog }} run: make PROJECT_PLATFORM_ARCH=${{ matrix.arch }} deps all - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.prog }}-${{ matrix.dist }} path: ./bin/${{ matrix.prog }} @@ -55,14 +55,14 @@ jobs: configuration: Release build_path: Release steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v1.3 - name: Clone submodules run: git submodule init && git submodule update - name: Compile ${{ matrix.prog }} run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.prog }}-${{ matrix.dist }} path: .\build\visualstudio\${{ matrix.build_path }}\${{ matrix.prog }}.exe