[Scummvm-git-logs] scummvm master -> 04110fd1002303277790d7f3de6efb0ac88d5023

SupSuper noreply at scummvm.org
Mon May 20 09:17:58 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
04110fd100 CI: Bump action versions


Commit: 04110fd1002303277790d7f3de6efb0ac88d5023
    https://github.com/scummvm/scummvm/commit/04110fd1002303277790d7f3de6efb0ac88d5023
Author: SupSuper (supsuper at gmail.com)
Date: 2024-05-20T10:16:05+01:00

Commit Message:
CI: Bump action versions

Changed paths:
    .github/workflows/ci.yml


diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 900588157df..5d8d78a92de 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -36,20 +36,20 @@ jobs:
       contents: write # For dependencygraph
     steps:
       - name: Checkout
-        uses: actions/checkout at v3
+        uses: actions/checkout at v4
       - uses: ilammy/setup-nasm at v1
-        if: ${{ matrix.useNasm }} == 'true'
+        if: matrix.useNasm == 'true'
       - name: Install vcpkg
         uses: lukka/run-vcpkg at v11
         id: runvcpkg
         with:
-          vcpkgGitCommitId: 56954f1db97f38635782d5ad7cdfd45d2731c854
+          vcpkgGitCommitId: 943c5ef1c8f6b5e6ced092b242c8299caae2ff01
       - name: Integrate vcpkg
         run: |
           ${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_ROOT_OUT }}/vcpkg integrate install
       - name: Upload libs
-        uses: actions/upload-artifact at v3
-        if: ${{ matrix.buildArtifacts }} == 'true'
+        uses: actions/upload-artifact at v4
+        if: matrix.buildArtifacts == 'true'
         with:
           name: libs-${{ matrix.triplet }}
           path: ${{ env.VCPKG_INSTALLED_DIR }}\\${{ matrix.triplet }}
@@ -67,33 +67,33 @@ jobs:
           ../devtools/create_project/cmake/Debug/create_project.exe .. --msvc --vcpkg --enable-all-engines ${{ matrix.configFlags }}
           ls
       - name: Add msbuild to PATH
-        uses: microsoft/setup-msbuild at v1.1.3
+        uses: microsoft/setup-msbuild at v2
       - name: Build scummvm
         run: |
           cd build-scummvm
           ls
           msbuild scummvm.sln /m /p:VcpkgEnableManifest=true /p:BuildInParallel=true /p:Configuration=${{ env.CONFIGURATION }} /p:PreferredToolArchitecture=x64 /p:Platform=${{ matrix.platform }} /v:minimal
       - name: Upload scummvm
-        uses: actions/upload-artifact at v3
-        if: ${{ matrix.buildArtifacts }} == 'true'
+        uses: actions/upload-artifact at v4
+        if: matrix.buildArtifacts == 'true'
         with:
           name: scummvm-${{ matrix.arch }}
           path: build-scummvm/${{ env.CONFIGURATION }}${{ matrix.arch }}/*.exe
       - name: Upload scummvm libs
-        uses: actions/upload-artifact at v3
-        if: ${{ matrix.buildArtifacts }} == 'true'
+        uses: actions/upload-artifact at v4
+        if: matrix.buildArtifacts == 'true'
         with:
           name: scummvm-${{ matrix.arch }}
           path: ${{ env.VCPKG_INSTALLED_DIR }}\\${{ matrix.triplet }}\\bin\\*.dll
       - name: Upload scummvm symbols
-        uses: actions/upload-artifact at v3
-        if: ${{ matrix.buildArtifacts }} == 'true'
+        uses: actions/upload-artifact at v4
+        if: matrix.buildArtifacts == 'true'
         with:
           name: symbols-${{ matrix.arch }}
           path: build-scummvm/${{ env.CONFIGURATION }}${{ matrix.arch }}/*.pdb
       - name: Upload scummvm libs symbols
-        uses: actions/upload-artifact at v3
-        if: ${{ matrix.buildArtifacts }} == 'true'
+        uses: actions/upload-artifact at v4
+        if: matrix.buildArtifacts == 'true'
         with:
           name: symbols-${{ matrix.arch }}
           path: ${{ env.VCPKG_INSTALLED_DIR }}\\${{ matrix.triplet }}\\bin\\*.pdb
@@ -122,7 +122,7 @@ jobs:
         shell: bash
     steps:
       - name: Checkout
-        uses: actions/checkout at v3
+        uses: actions/checkout at v4
       - name: Install packages
         if: ${{ matrix.brewPackages }}
         run: brew install ${{ matrix.brewPackages }}




More information about the Scummvm-git-logs mailing list