From 8571fa911c646417bd79bf863b7b428aed099e00 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Wed, 12 May 2021 20:26:14 +0200 Subject: [PATCH] fix(ci): pin actions to major (#282) Co-authored-by: CrazyMax --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/test.yml | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 015b799..618d1ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -64,7 +64,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -96,7 +96,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -107,7 +107,7 @@ jobs: - name: Import GPG key id: import_gpg - uses: crazy-max/ghaction-import-gpg@v3.1.0 + uses: crazy-max/ghaction-import-gpg@v3 with: gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY_TEST }} passphrase: ${{ secrets.PASSPHRASE_TEST }} @@ -135,7 +135,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a741a9..9c43e76 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,21 +16,21 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - name: Validate - uses: docker/bake-action@v1.4.0 + uses: docker/bake-action@v1 with: targets: validate - name: Test - uses: docker/bake-action@v1.4.0 + uses: docker/bake-action@v1 with: targets: test - name: Upload coverage - uses: codecov/codecov-action@v1.5.0 + uses: codecov/codecov-action@v1 with: file: ./coverage/clover.xml