From becf1dc14b246f2994b60bbdd99ece60d6f86183 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 16 Dec 2023 10:24:48 +0700 Subject: [PATCH] Update to actions/checkout@v4 from v3 This mainly updates the version of NodeJS used internally to keep up with what's going on at GitHub Actions. Closes #2447 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 730e82b4..e980c547 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: CC: clang CFLAGS: -Werror steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: | sudo apt update @@ -57,7 +57,7 @@ jobs: MACOSX_DEPLOYMENT_TARGET: 10.8 CMAKE_OSX_ARCHITECTURES: x86_64;arm64 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Configure Null shared library run: cmake -B build-null-shared -D GLFW_BUILD_COCOA=OFF -D BUILD_SHARED_LIBS=ON @@ -81,7 +81,7 @@ jobs: env: CFLAGS: /WX steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Configure Win32 shared x86 library run: cmake -B build-win32-shared-x86 -G "Visual Studio 17 2022" -A Win32 -D BUILD_SHARED_LIBS=ON