From 893aad1cc646b6227ceafa988acc8807f3b9edc7 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 13 Feb 2024 16:33:03 -0800 Subject: [PATCH] Update to actions/checkout@v4. This fixes CI warnings about Node.js 16 being deprecated. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e6da62e..96a64e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: recursive @@ -50,7 +50,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust run: rustup update nightly && rustup default nightly && rustup component add rustfmt - name: Format source code