From 5c15d039e1c26b8ad446d241ea38167d248aa6f5 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 31 Oct 2022 08:16:45 -0300 Subject: [PATCH] chore(ci): update actions/checkout to v3 supresses deprecation warning for node12 --- .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 2fa58c0..f1f35da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: if: runner.os == 'macOS' run: | brew install sdl2 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: build @@ -43,7 +43,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - uses: goto-bus-stop/setup-zig@v1