From f1a494cfd2ce55fe88b5134eab985f5852667b8d Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 18 Jan 2024 06:25:32 +0700 Subject: [PATCH] ci: Update to `actions/checkout@v4`. (#1142) This fixes annotations on task runs like the following: The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ --- .github/workflows/android.yml | 2 +- .github/workflows/cmake_find_package.yml | 2 +- .github/workflows/ios.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index dd0b5a44..939c4616 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -12,7 +12,7 @@ jobs: run: working-directory: build steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Create build directory run: mkdir -p build diff --git a/.github/workflows/cmake_find_package.yml b/.github/workflows/cmake_find_package.yml index 5155d9c3..fd2f7a81 100644 --- a/.github/workflows/cmake_find_package.yml +++ b/.github/workflows/cmake_find_package.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ ubuntu-latest, macos-latest ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: lukka/get-cmake@latest with: cmakeVersion: 3.14.0 diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 0ef9fa3b..a7f2f104 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -12,7 +12,7 @@ jobs: run: working-directory: build steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Create build directory run: mkdir -p build