From 73d1fe0e32351d84bf775e74a79a7ca81d5a6b2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:34:12 +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/codeql-analysis.yml | 2 +- .github/workflows/examples-go.yml | 2 +- .github/workflows/go.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3203212b5d..7415ce27c9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/examples-go.yml b/.github/workflows/examples-go.yml index dd556bf0b8..62e88c1397 100644 --- a/.github/workflows/examples-go.yml +++ b/.github/workflows/examples-go.yml @@ -15,7 +15,7 @@ jobs: go-version: 1.16 - name: Check out source code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Running examples E2E test folder run: make -B examples diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4e7826b4f3..823a451c82 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,7 +15,7 @@ jobs: go-version: 1.16 - name: Check out source code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Running CI run: make ci