From 196c529f6b3ec2aca853c5eb3f8bc9d2533853e0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 8 Mar 2022 08:11:52 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v3 --- .github/workflows/ci.yml | 16 ++++++++-------- .github/workflows/schedule.yml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e2f94cc8..90d4bc56e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '16.x' @@ -25,7 +25,7 @@ jobs: validate-components: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '16.x' @@ -56,7 +56,7 @@ jobs: - name: Ensure line endings are consistent run: git config --global core.autocrlf input - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies and run build scripts run: npm ci - name: Type-check tests @@ -100,7 +100,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies and run build scripts run: npm ci - name: Run integration tests @@ -123,7 +123,7 @@ jobs: - name: Ensure line endings are consistent run: git config --global core.autocrlf input - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies and run build scripts run: npm ci - name: Run integration tests @@ -151,7 +151,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Docker meta id: meta uses: docker/metadata-action@v3 @@ -193,7 +193,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.ref }} - name: Docker meta @@ -225,7 +225,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '16.x' diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml index a478abd7c..542676489 100644 --- a/.github/workflows/schedule.yml +++ b/.github/workflows/schedule.yml @@ -22,7 +22,7 @@ jobs: with: node-version: 16.x - name: Check out the project - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ matrix.branch }} - name: Install dependencies and run build scripts