Skip to content

Commit 9f00502

Browse files
authored
Merge pull request #151 from StefRuseva88/main
🔄 Sync Patch Branch with Main
2 parents 4276c21 + 5b53d7f commit 9f00502

File tree

8 files changed

+5864
-9635
lines changed

8 files changed

+5864
-9635
lines changed

.eslintrc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"extends": [
1414
"prettier",
1515
"eslint:recommended",
16-
"plugin:@typescript-eslint/recommended",
17-
"plugin:primer-react/recommended"
16+
"plugin:@typescript-eslint/recommended"
1817
],
1918
"rules": {
2019
"prettier/prettier": ["error"],

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [16.x, 18.x, 20.x]
19+
node-version: [18.x, 20.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
2323
- uses: actions/checkout@v3
2424
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'

.github/workflows/packaging-and-deployment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Use Node.js 16.x
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: 16.x
2323
cache: npm
@@ -47,15 +47,15 @@ jobs:
4747
uses: docker/setup-buildx-action@v2
4848

4949
- name: Docker Login
50-
uses: docker/login-action@v3.3.0
50+
uses: docker/login-action@v3.4.0
5151
with:
5252
username: ${{ github.actor }}
5353
password: ${{ secrets.GITHUB_TOKEN }}
5454
registry: ghcr.io
5555

5656
- name: Generate Docker Metadata
5757
id: meta
58-
uses: docker/metadata-action@v4
58+
uses: docker/metadata-action@v5
5959
with:
6060
images: ghcr.io/${{ github.repository }}
6161
tags: |
@@ -64,7 +64,7 @@ jobs:
6464
type=sha,event=branch,prefix=,format=short
6565
6666
- name: Build and Push Docker Image
67-
uses: docker/build-push-action@v5
67+
uses: docker/build-push-action@v6
6868
with:
6969
push: true
7070
tags: ${{ steps.meta.outputs.tags }}

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
- name: Checkout Repository
1313
uses: actions/checkout@v3
1414
- name: Dependency Review
15-
uses: actions/dependency-review-action@v3
15+
uses: actions/dependency-review-action@v4
1616
with:
1717
comment-summary-in-pr: true

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build container for the frontend bundle
2-
FROM node:16 as build
2+
FROM node:23 as build
33

44
WORKDIR /usr/src/app
55

@@ -9,7 +9,7 @@ RUN npm ci
99
RUN npm run build:staging
1010

1111
# Create the server to host the static files
12-
FROM node:16 as server
12+
FROM node:23 as server
1313

1414
WORKDIR /usr/src/app
1515

0 commit comments

Comments
 (0)