From e98cbd2ca492e1f2fded5a4860df37afeb546e28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 00:03:04 +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/pr.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e55acfe..61b889e 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,7 @@ jobs: name: Node ${{ matrix.node }} test steps: - name: Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run linting rules and tests uses: actions/setup-node@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7134390..7a3951f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: name: GitHub Tagging steps: - name: Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set application version run: | echo "PACKAGE=v$(echo `cat package.json | jq -r .version`)" >> $GITHUB_ENV @@ -58,7 +58,7 @@ jobs: needs: [tagging] steps: - name: Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set application version run: | echo "PACKAGE=v$(echo `cat package.json | jq -r .version`)" >> $GITHUB_ENV @@ -105,7 +105,7 @@ jobs: needs: [tagging, release] steps: - name: Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: NPM Release env: NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}