From a80a77cfb5ecb760cfc2c21690d23eaf1ccdc050 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 03:14:25 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. - [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.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/release-it.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b52feb2..53ae50f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: go: ${{ steps.filter.outputs.go }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - uses: dorny/paths-filter@v2 id: filter @@ -35,7 +35,7 @@ jobs: needs: [changes] if: ${{ needs.changes.outputs.docker == 'true' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: Lint Dockerfile uses: brpaz/hadolint-action@master with: @@ -47,7 +47,7 @@ jobs: needs: [changes] if: ${{ needs.changes.outputs.go == 'true' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: @@ -60,7 +60,7 @@ jobs: if: ${{ needs.changes.outputs.go == 'true' }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. @@ -106,7 +106,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Install Go uses: actions/setup-go@v2 @@ -148,7 +148,7 @@ jobs: needs: [test, lint-docker, lint-go, lint-go-security] if: ${{ github.event_name == 'release' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: Login to docker.pkg.github.com run: | diff --git a/.github/workflows/release-it.yml b/.github/workflows/release-it.yml index 63ab4e0..9c1b301 100644 --- a/.github/workflows/release-it.yml +++ b/.github/workflows/release-it.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Fetch tags and configure git run: |