From 05480a83a024612a5733a730f57f14863e92d18c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Oct 2022 04:43:47 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 2.3.4 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 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.3.4...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/automerge.yaml | 2 +- .github/workflows/pr.yaml | 8 ++++---- .github/workflows/publish.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/automerge.yaml b/.github/workflows/automerge.yaml index e246cb9..7840d97 100644 --- a/.github/workflows/automerge.yaml +++ b/.github/workflows/automerge.yaml @@ -9,7 +9,7 @@ jobs: if: github.actor == 'dependabot[bot]' steps: - - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - uses: ahmadnassri/action-dependabot-auto-merge@v2.6 with: diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 8d4eb06..e178c77 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -6,7 +6,7 @@ jobs: name: golang lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.1.0 - uses: hazcod/action-golangci-lint@master with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -16,7 +16,7 @@ jobs: name: dockerfile lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.1.0 - name: hadolint uses: burdzwastaken/hadolint-action@1.10.0 env: @@ -27,7 +27,7 @@ jobs: name: docker build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.1.0 - name: extract tag id: vars run: echo ::set-output name=nginx_version::$(grep '^FROM nginx' Dockerfile | cut -d ' ' -f 2 | cut -d ':' -f 2) @@ -38,7 +38,7 @@ jobs: name: docker security scan runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.1.0 - name: docker build run: docker build . --file Dockerfile --tag image - name: cached scan db diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 062f54f..960f036 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v3.1.0 - uses: go-semantic-release/action@v1 id: version