From aa6a59451396832f640badc2f1709cf5635d03e9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 5 Mar 2022 15:27:37 +0000 Subject: [PATCH] Update actions/checkout action to v3 Signed-off-by: Renovate Bot --- .github/workflows/build.yml | 2 +- .github/workflows/deploy-main.yml | 2 +- .github/workflows/deploy-pr.yml | 2 +- .github/workflows/e2e.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/reuse.yml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b556f3b41..aa710f45d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: name: Test and build with NodeJS ${{ matrix.node }} steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml index 8de907bb7..11223bf14 100644 --- a/.github/workflows/deploy-main.yml +++ b/.github/workflows/deploy-main.yml @@ -14,7 +14,7 @@ jobs: name: Deploys to netlify steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path diff --git a/.github/workflows/deploy-pr.yml b/.github/workflows/deploy-pr.yml index d3de26736..2d0db0cf9 100644 --- a/.github/workflows/deploy-pr.yml +++ b/.github/workflows/deploy-pr.yml @@ -14,7 +14,7 @@ jobs: name: Deploys to netlify steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index f5aacaed2..c390578d1 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -16,7 +16,7 @@ jobs: name: Build test build of frontend steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache build uses: actions/cache@v2.1.7 @@ -76,7 +76,7 @@ jobs: containers: [ 1, 2, 3, 4, 5 ] steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Download built frontend uses: actions/download-artifact@master diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 74b1eee83..5ca24e393 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: name: Lints all .ts and .tsx files steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path @@ -44,7 +44,7 @@ jobs: name: Checks codestyle of all .ts and .tsx files steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index a4f9ed0c2..2416274d1 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -14,6 +14,6 @@ jobs: reuse: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: REUSE Compliance Check uses: fsfe/reuse-action@v1