From 12168e2bf5fb2f95a4e05ff986bd9ecad2356d75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 06:46:07 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cd-nightly.yml | 2 +- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cd-nightly.yml b/.github/workflows/cd-nightly.yml index 258fd29a..e166b9ce 100644 --- a/.github/workflows/cd-nightly.yml +++ b/.github/workflows/cd-nightly.yml @@ -9,7 +9,7 @@ jobs: build_and_release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: token: ${{ secrets.CI_PERSONAL_TOKEN }} ref: development diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 7a14ce7f..393f28c9 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,7 +14,7 @@ jobs: build_and_release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: token: ${{ secrets.CI_PERSONAL_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08b6e246..33d1ae12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: SECRETS_AVAILABLE: ${{ secrets.CI_PERSONAL_TOKEN != '' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: token: ${{ secrets.CI_PERSONAL_TOKEN || github.token }} @@ -51,7 +51,7 @@ jobs: needs: [prettify] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js 14.x uses: actions/setup-node@v1 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6a751116..32fc4da4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL