Skip to content

Commit

Permalink
repo: update CI/CD scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Favo02 committed Mar 3, 2024
1 parent 7af671d commit 40966c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ jobs:
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '19.x'
with: node-version: 20
- name: Lint
run: |
cd frontend
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ jobs:
uses: actions/checkout@v1
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v2
with:
dotnet-version: '5.0.x'
with: dotnet-version: '5.0.x'
- name: Setup git
run: |
git config user.email "$(git log -1 --pretty=format:%ae)"
git config user.name "$(git log -1 --pretty=format:%an)"
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.9.13
with:
versionSpec: '5.x'
with: versionSpec: '5.x'
- name: Determine Version
id: execute
uses: gittools/actions/gitversion/execute@v0.9.13
Expand All @@ -38,8 +36,7 @@ jobs:
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 19
with: node-version: 20
- name: Setup git
run: |
git config user.email "$(git log -1 --pretty=format:%ae)"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:20-alpine

WORKDIR /app

Expand Down

0 comments on commit 40966c3

Please sign in to comment.