Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
12df6cc
Merge pull request #132 from StefRuseva88/StefRuseva88-patch-1
StefRuseva88 Mar 28, 2025
51be611
Create dependabot.yml
StefRuseva88 Apr 8, 2025
59dd7af
Bump actions/setup-node from 3 to 4
dependabot[bot] Apr 8, 2025
79e5769
Bump docker/build-push-action from 5 to 6
dependabot[bot] Apr 8, 2025
cfbb7c7
Bump actions/dependency-review-action from 3 to 4
dependabot[bot] Apr 8, 2025
fb99628
Bump docker/metadata-action from 4 to 5
dependabot[bot] Apr 8, 2025
c936eb5
Bump docker/login-action from 3.3.0 to 3.4.0
dependabot[bot] Apr 8, 2025
0c3f230
Bump node from 16 to 23
dependabot[bot] Apr 8, 2025
4173ff4
Bump @primer/octicons-react from 17.9.0 to 19.15.1
dependabot[bot] Apr 8, 2025
9e21212
dependabot/github_actions/actions/setup-node-4
StefRuseva88 Apr 8, 2025
c0d0e52
dependabot/github_actions/actions/dependency-review-action-4
StefRuseva88 Apr 8, 2025
53e86e3
dependabot/github_actions/docker/build-push-action-6
StefRuseva88 Apr 8, 2025
f644146
dependabot/github_actions/docker/metadata-action-5
StefRuseva88 Apr 8, 2025
c9deb1d
dependabot/github_actions/docker/login-action-3.4.0
StefRuseva88 Apr 8, 2025
311aaf9
dependabot/docker/node-23
StefRuseva88 Apr 8, 2025
19772e4
dependabot/npm_and_yarn/primer/octicons-react-19.15.1
StefRuseva88 Apr 8, 2025
86b4ed6
Bump eslint-config-prettier from 8.5.0 to 10.1.1
dependabot[bot] Apr 8, 2025
9ad4cef
Bump vitest from 0.25.8 to 3.1.1
dependabot[bot] Apr 8, 2025
2a1546b
dependabot/npm_and_yarn/vitest-3.1.1
StefRuseva88 Apr 8, 2025
abd8250
dependabot/npm_and_yarn/eslint-config-prettier-10.1.1
StefRuseva88 Apr 8, 2025
0b47f01
Update test.yml
StefRuseva88 Apr 8, 2025
4a1ae40
Update package.json
StefRuseva88 Apr 8, 2025
f93474b
Update test.yml
StefRuseva88 Apr 8, 2025
a66c121
Update package.json
StefRuseva88 Apr 8, 2025
3ee2c98
Update package.json
StefRuseva88 Apr 8, 2025
4cd105c
Delete .github/dependabot.yml
StefRuseva88 Apr 9, 2025
81c601b
Update test.yml
StefRuseva88 Apr 9, 2025
97bcad6
fix: regenerate lock file
StefRuseva88 Apr 9, 2025
3a69f4b
Fix TypeScript error with styled.img in OctocatBox component
StefRuseva88 Apr 9, 2025
5a98060
Fix ESLint issue with primer-react plugin
StefRuseva88 Apr 9, 2025
55310f6
Update node.js.yml
StefRuseva88 Apr 9, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

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

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/packaging-and-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: npm
Expand Down Expand Up @@ -47,15 +47,15 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Docker Login
uses: docker/login-action@v3.3.0
uses: docker/login-action@v3.4.0
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io

- name: Generate Docker Metadata
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
Expand All @@ -64,7 +64,7 @@ jobs:
type=sha,event=branch,prefix=,format=short

- name: Build and Push Docker Image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Dependency Review
uses: actions/dependency-review-action@v3
uses: actions/dependency-review-action@v4
with:
comment-summary-in-pr: true
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build container for the frontend bundle
FROM node:16 as build
FROM node:23 as build

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / 🐳 Package & Publish

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

WORKDIR /usr/src/app

Expand All @@ -9,7 +9,7 @@
RUN npm run build:staging

# Create the server to host the static files
FROM node:16 as server
FROM node:23 as server

Check warning on line 12 in Dockerfile

View workflow job for this annotation

GitHub Actions / 🐳 Package & Publish

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

WORKDIR /usr/src/app

Expand All @@ -19,7 +19,7 @@
# Create the final image to host both, server and distribute files as public
FROM node:lts-alpine

ENV NODE_ENV production

Check warning on line 22 in Dockerfile

View workflow job for this annotation

GitHub Actions / 🐳 Package & Publish

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
USER node

WORKDIR /usr/src/app
Expand Down
Loading
Loading