From 30f0ab503be71c1dd097385d232d2d7b860498a3 Mon Sep 17 00:00:00 2001 From: Iovesophy <15680172+Iovesophy@users.noreply.github.com> Date: Thu, 10 Nov 2022 16:38:47 +0900 Subject: [PATCH] ADD: upgrade actions checkout v2 to v3 --- .github/workflows/macos.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5b1827d..8f27972 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,16 +1,15 @@ name: CI to MacOS on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: - build: - runs-on: macos-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v2 - - name: Run - run: make - + build: + runs-on: macos-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + - name: Run + run: make