From b6bfec383b192d19865dd69f4b2c9e41f14bf92f Mon Sep 17 00:00:00 2001 From: Antonio Ventilii Date: Thu, 24 Oct 2024 08:29:10 +0200 Subject: [PATCH] ci: Bump checkout action --- .github/workflows/checks.yml | 12 ++++++------ .github/workflows/next.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/update-ic.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 37c3b8a81..fb1063f7b 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -71,7 +71,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install didc run: | mkdir -p .bin @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Check the protoc installer run: ./scripts/install-protoc --help - name: Install protoc @@ -109,7 +109,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Build @@ -120,7 +120,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Lint @@ -131,7 +131,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Build @@ -146,7 +146,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Size check uses: andresz1/size-limit-action@v1 with: diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index e42040863..057459a71 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build next version run: ./scripts/build-next - name: Set up npm diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8effd7008..ea2eff82d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Dependencies run: npm ci - name: Build diff --git a/.github/workflows/update-ic.yml b/.github/workflows/update-ic.yml index 21dd4a2cd..19ac56421 100644 --- a/.github/workflows/update-ic.yml +++ b/.github/workflows/update-ic.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ic-js - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Choose IC ref id: choose_ic_ref run: | @@ -32,7 +32,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} - name: Checkout ic repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: dfinity/ic ref: ${{ steps.choose_ic_ref.outputs.ic_ref }}