Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 🔧
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down