From 3b840dee0254a1b031f20dba14f5b5831ad0328f Mon Sep 17 00:00:00 2001 From: Deep Singhvi Date: Mon, 4 Sep 2023 10:05:45 -0400 Subject: [PATCH] :herb: upgrade to `actions/checkout@v4` (#16) The v3 checkout action is having an outage. Read more here: https://github.com/actions/checkout/issues/1448 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc46124..9ce78bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Fern run: npm install -g fern-api @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node uses: actions/setup-node@v3