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"