From 18a540d08a25c664bffc7699e6d42aef767c3626 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:41:14 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.7 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. - [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/v4.1.7...v4.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/devops.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/devops.yml b/.github/workflows/devops.yml index f6b29ce..0227008 100644 --- a/.github/workflows/devops.yml +++ b/.github/workflows/devops.yml @@ -18,7 +18,7 @@ jobs: node-version: [18.X, 20.X, 21.X] steps: - name: Git checkout - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: @@ -38,7 +38,7 @@ jobs: name: MarkdownLint steps: - name: Git checkout - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 - name: markdownlint-cli uses: nosborn/github-action-markdown-cli@v3.3.0 with: @@ -58,7 +58,7 @@ jobs: name: SonarCloud analyse steps: - name: Git checkout - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: SonarCloud Scan @@ -82,7 +82,7 @@ jobs: name: Build and package steps: - name: Git checkout - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 - name: Use Node.js ${{ env.nodeLastVersion }} uses: actions/setup-node@v4 with: @@ -116,7 +116,7 @@ jobs: name: Release on GitHub and NPM steps: - name: Git checkout - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV - name: Use Node.js ${{ matrix.node-version }}