From 139f9ce55c129c824a47c27ddc33e32f8f086b21 Mon Sep 17 00:00:00 2001 From: Edo Date: Fri, 1 Dec 2023 15:49:41 +0100 Subject: [PATCH] build(ci): update workflow (#160) --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 994a3f40..33f57aa8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: platform: x64 steps: - name: Check out files - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 @@ -61,7 +61,7 @@ jobs: run: msbuild /m /v:minimal /p:Configuration=${{matrix.config}} /p:Platform=${{matrix.platform}} build/gsc-tool.sln - name: Upload ${{matrix.arch}} ${{matrix.config}} binaries - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v3.1.3 with: name: windows-${{matrix.arch}}-${{matrix.config}} path: | @@ -80,7 +80,7 @@ jobs: - arm64 steps: - name: Check out files - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 @@ -103,7 +103,7 @@ jobs: make config=${{matrix.config}}_${{matrix.arch}} -j$(sysctl -n hw.logicalcpu) - name: Upload ${{matrix.arch}} ${{matrix.config}} binaries - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v3.1.3 with: name: macos-${{matrix.arch}}-${{matrix.config}} path: | @@ -122,7 +122,7 @@ jobs: - arm64 steps: - name: Check out files - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 @@ -154,7 +154,7 @@ jobs: CXX: clang++ - name: Upload ${{matrix.arch}} ${{matrix.config}} binaries - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v3.1.3 with: name: linux-${{matrix.arch}}-${{matrix.config}} path: | @@ -167,7 +167,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') && (github.event.base_ref == 'refs/heads/prod' || github.event.base_ref == 'refs/heads/dev') steps: - name: Check out files - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 - name: Download Binaries uses: actions/download-artifact@v3.0.2