From c880526facdc5787f28de9515ea8d55fe1d26f8e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 19:41:46 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/docker-image.yaml | 2 +- .github/workflows/nodejs-pr.yaml | 2 +- .github/workflows/prettier.yaml | 2 +- .github/workflows/release.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1324f107..f63d5dfb 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.6.0 + uses: actions/checkout@v4.1.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index 8aefa7e3..d0a57d45 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.0 - name: Log in to the Container registry uses: docker/login-action@v2.2.0 diff --git a/.github/workflows/nodejs-pr.yaml b/.github/workflows/nodejs-pr.yaml index ef125fb7..e48750c6 100644 --- a/.github/workflows/nodejs-pr.yaml +++ b/.github/workflows/nodejs-pr.yaml @@ -13,7 +13,7 @@ jobs: matrix: node-version: [ 16.x ] steps: - - uses: actions/checkout@v3.6.0 + - uses: actions/checkout@v4.1.0 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3.8.1 with: diff --git a/.github/workflows/prettier.yaml b/.github/workflows/prettier.yaml index e57faa53..03ff0fb3 100644 --- a/.github/workflows/prettier.yaml +++ b/.github/workflows/prettier.yaml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.0 with: # Make sure the actual branch is checked out when running on pull requests ref: ${{ github.head_ref }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 321ab26f..7bd6fe99 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.1.0 - name: Fetch all history for all tags and branches run: git fetch --prune --unshallow