From d4e1d350f2cb5da174cd1e713bdd4e147d335c83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 12:47:05 +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/backend.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/documentation.yml | 6 +++--- .github/workflows/frontend.yml | 2 +- .github/workflows/versioning.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 9452c4eb3..352f9628a 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -25,7 +25,7 @@ jobs: run: working-directory: ./src steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 name: Backend Install & Test using Node.js ${{ matrix.node-version }} with: diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index ce891e77a..e13d71d91 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -26,7 +26,7 @@ jobs: steps: #Get the latest version of the repository - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: actions/setup-node@v3 #Get Current and DateTime for Build - name: Set current date and time as an environment variable diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index c5ad95c4b..7e323ca46 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -27,7 +27,7 @@ jobs: steps: #Get the latest version of the repository - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 #Check github pages docs for spelling errors - name: "Documentation: Spell Check Documentation" uses: codespell-project/actions-codespell@master @@ -46,7 +46,7 @@ jobs: working-directory: ./src/client steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false - name: Install and Build 🔧 @@ -60,7 +60,7 @@ jobs: needs: storybook steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Pages uses: actions/configure-pages@v2 - name: Build with Jekyll diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index d94d22f4d..1c9019f9e 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -25,7 +25,7 @@ jobs: run: working-directory: ./src/client steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 name: Frontend Build & Test using Node.js ${{ matrix.node-version }} with: diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 9350b06c3..221c3b712 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -17,7 +17,7 @@ jobs: ls -la ./ #Get the latest version of the repository - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 #Bump the backend version - name: "Backend: Automated Version Bump" uses: "phips28/gh-action-bump-version@master"