From 4db4a80c5d9d70e33c6b17266880831b0d744539 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 03:18:15 +0000 Subject: [PATCH] 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.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index be0375a..8e09080 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,14 +9,14 @@ jobs: # Execute the checks inside the contianer instead the VM. container: golangci/golangci-lint:v1.41.1-alpine steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - run: ./scripts/check/check.sh test: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - uses: actions/setup-go@v2 with: go-version: 1.16 @@ -37,7 +37,7 @@ jobs: name: Release image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: Build image run: make build-image - name: Docker login @@ -59,7 +59,7 @@ jobs: # Only run in master and when has a tag. steps: - run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var. - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: Build image run: make build-image - name: Docker login