From afabe33935f7564a1308c4e34317634f60885f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Troch?= Date: Fri, 3 May 2024 16:06:04 +0200 Subject: [PATCH] Upgrade GitHub Actions versions --- .github/workflows/ci-cd.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 952d2e6b..77170c6e 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -11,7 +11,7 @@ jobs: compiler: [g++, clang++] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install G++ Multilib, Clang++ & OpenGL library run: | @@ -24,7 +24,7 @@ jobs: make COMPILER=${{ matrix.compiler }} CFG=release -j2 - name: Deploy - uses: actions/upload-artifact@v3.1.0 + uses: actions/upload-artifact@v4 with: name: Linux-x86-${{ matrix.compiler }} path: | @@ -38,10 +38,10 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.1 + - name: Add MSBuild to PATH + uses: microsoft/setup-msbuild@v2 with: msbuild-architecture: x86 @@ -49,7 +49,7 @@ jobs: run: msbuild projects/vs2019/projects.sln -t:rebuild -property:Configuration=Release -maxcpucount:2 - name: Deploy - uses: actions/upload-artifact@v3.1.0 + uses: actions/upload-artifact@v4 with: name: Win32 path: |