From 009f84cd69c1f44ab14b833c4132ac7f61f80d37 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 8 Nov 2020 02:54:03 +0100 Subject: [PATCH] Use major version of actions --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/labels.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67c41bb..5d56388 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Docker meta uses: ./ @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Docker meta uses: ./ @@ -68,7 +68,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Docker meta uses: ./ @@ -90,7 +90,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Docker meta id: docker_meta diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index 08d5675..29eb111 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Run Labeler - uses: crazy-max/ghaction-github-labeler@v3.1.0 + uses: crazy-max/ghaction-github-labeler@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f09e7e9..d2d31bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Validate run: docker buildx bake validate @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v2 - name: Install run: yarn install @@ -39,7 +39,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 }}