From 0cedbd247b7187878f93a85825fa4f74bb5cb036 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 20:47:37 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/dependabot.yml | 2 +- .github/workflows/full_build.yml | 4 ++-- .github/workflows/noticeme.yml | 2 +- .github/workflows/npm-publish.yml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 0fec113..e9b911d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index 3bfb3df..68c56a4 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -28,7 +28,7 @@ jobs: YARN_ENABLE_IMMUTABLE_INSTALLS: false steps: - - uses: actions/checkout@v3.5.2 + - uses: actions/checkout@v4 with: # Using a Personal Access Token here is required to trigger workflows on our new commit. # The default GitHub token doesn't trigger any workflows. diff --git a/.github/workflows/full_build.yml b/.github/workflows/full_build.yml index 4b4a7e4..e32cb56 100644 --- a/.github/workflows/full_build.yml +++ b/.github/workflows/full_build.yml @@ -18,7 +18,7 @@ jobs: node: [16.x] react: [16, 17, 18] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js environment uses: actions/setup-node@v3 with: @@ -32,7 +32,7 @@ jobs: name: "Build package" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js environment uses: actions/setup-node@v3 with: diff --git a/.github/workflows/noticeme.yml b/.github/workflows/noticeme.yml index c9f5e7f..d12b7f7 100644 --- a/.github/workflows/noticeme.yml +++ b/.github/workflows/noticeme.yml @@ -20,7 +20,7 @@ jobs: run: echo "date=$(date +%Y-%m-%d)" >> "$GITHUB_ENV" shell: bash - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Using a Personal Access Token here is required to trigger workflows on our new commit. # The default GitHub token doesn't trigger any workflows. diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 9d622c3..eacbfda 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.2 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3.6.0 with: node-version: 16.x @@ -31,7 +31,7 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.2 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3.6.0 with: node-version: 16.x