aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Furr <wfurr@google.com>2024-04-23 16:34:29 -0700
committerCopybara-Service <copybara-worker@google.com>2024-04-23 16:34:56 -0700
commit88e9722a16230bf8e732382c59e4b6ef1156f226 (patch)
treefe00c4b0c5c8a4c6e3d1c8de673becd3c22d7e00
parentfe102cfbc138828da646d10285569101f6e3854b (diff)
downloadink-stroke-modeler-upstream-main.tar.gz
Migrate to v4 checkout action for GitHub CI workflows.upstream-main
This fixes a deprecation warning visible in our CI runs: https://github.com/google/ink-stroke-modeler/actions/runs/8727801400 ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` PiperOrigin-RevId: 627540691
-rw-r--r--.github/workflows/bazel-test.yaml2
-rw-r--r--.github/workflows/cmake-test.yaml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/bazel-test.yaml b/.github/workflows/bazel-test.yaml
index 9234190..4210b37 100644
--- a/.github/workflows/bazel-test.yaml
+++ b/.github/workflows/bazel-test.yaml
@@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Test
run: bazel test --test_output=errors //...
diff --git a/.github/workflows/cmake-test.yaml b/.github/workflows/cmake-test.yaml
index f580c28..3c48553 100644
--- a/.github/workflows/cmake-test.yaml
+++ b/.github/workflows/cmake-test.yaml
@@ -16,7 +16,7 @@ jobs:
CXX: clang++
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Configure CMake
run: cmake .