From 9c48726d5e4d91a73c792179b52ad76c683af06e Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 6 Nov 2020 21:26:05 +0100 Subject: [PATCH] chore: Use major version of actions --- .github/workflows/ci.yml | 6 +++--- .github/workflows/pre-checkin.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6f432e..ac24746 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -92,7 +92,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - diff --git a/.github/workflows/pre-checkin.yml b/.github/workflows/pre-checkin.yml index f6739d3..38808c1 100644 --- a/.github/workflows/pre-checkin.yml +++ b/.github/workflows/pre-checkin.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 - name: Install run: yarn install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0fa36d1..b98b7ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -35,7 +35,7 @@ jobs: run: yarn run test - name: Upload coverage - uses: codecov/codecov-action@v1.0.14 + uses: codecov/codecov-action@v1 if: success() with: token: ${{ secrets.CODECOV_TOKEN }}