From 2ca0a90ed1f86f1d367bf548b3bfdd0d06653ab5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 12 Mar 2022 08:33:39 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/builder.yml | 24 ++++++++++++------------ .github/workflows/codeql-analysis.yml | 12 ++++++------ .github/workflows/docker.yml | 4 ++-- .github/workflows/license.yml | 4 ++-- .github/workflows/linter.yml | 20 ++++++++++---------- .github/workflows/release.yml | 18 +++++++++--------- .github/workflows/snapcraft.yml | 2 +- .github/workflows/testing.yml | 4 ++-- 8 files changed, 44 insertions(+), 44 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 836ae7dc..2687e2ee 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -102,13 +102,13 @@ jobs: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -169,13 +169,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -208,13 +208,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -235,14 +235,14 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 submodules: true - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 submodules: true @@ -270,13 +270,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -316,13 +316,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 0022c87e..787361c6 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -50,13 +50,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'schedule' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -97,13 +97,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'schedule' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -127,13 +127,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'schedule' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a156b8c5..3f33fe12 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout default branch - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -136,7 +136,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout default branch - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index 70caafa0..dab01dbc 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -20,13 +20,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 30ff71c2..0be8f0b3 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -21,13 +21,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -47,13 +47,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -66,13 +66,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -85,13 +85,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -104,13 +104,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 769ee28a..91126bb9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,7 +81,7 @@ jobs: GOMIPSLE: ${{ matrix.mipsle }} steps: - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -134,7 +134,7 @@ jobs: GOARM: ${{ matrix.arm }} steps: - name: Check out codebase - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -165,7 +165,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out codebase - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -183,7 +183,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 submodules: true @@ -209,7 +209,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -239,7 +239,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -305,7 +305,7 @@ jobs: needs: [build, checksum] steps: - name: Check out code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -360,7 +360,7 @@ jobs: needs: [debpkg] steps: - name: Check out code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: token: ${{ secrets.GH_PAT }} repository: 'wabarc/apt-repo' @@ -406,7 +406,7 @@ jobs: needs: [rpmpkg] steps: - name: Check out code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: token: ${{ secrets.GH_PAT }} repository: 'wabarc/rpm-repo' diff --git a/.github/workflows/snapcraft.yml b/.github/workflows/snapcraft.yml index 81cec3e2..14832db0 100644 --- a/.github/workflows/snapcraft.yml +++ b/.github/workflows/snapcraft.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 209a455d..eb40fc75 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -119,13 +119,13 @@ jobs: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }}