From 8993415fd05323587b20fe1fd2a627e275b7bc07 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:27:59 +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/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..75b1eda32e 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 # 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..a910a5112c 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 - name: Running examples E2E test folder run: make -B examples diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4e7826b4f3..7430c768e9 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 - name: Running CI run: make ci