From 44fa82035922f8b96563769f48a6cb51f66bbf8e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 14:55:39 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/browserstack.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/prettier.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index d6b2c1c88..0ed24b2db 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -24,7 +24,7 @@ jobs: # The next 3 steps are for building the web application to be tested and starting the web server on the runner environment - name: "Checkout the repository" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: "Building web application to be tested" run: npm install && npm run build diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index affe76a55..2f2d12a7d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,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/prettier.yml b/.github/workflows/prettier.yml index ead2766a8..5adb20ce0 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 16 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba01ad738..b865596b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node.js diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39ebc7cca..68e8cdf18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: