Skip to content

Commit 82bfd1c

Browse files
committed
Merge branch 'develop'
2 parents a6914ef + 7540381 commit 82bfd1c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2091
-857
lines changed

.github/workflows/cache-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Check out code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Cleanup cache
2323
run: |

.github/workflows/linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Install Node.JS
28-
uses: actions/setup-node@v4
28+
uses: actions/setup-node@v5
2929

3030
- name: Cache modules
3131
uses: actions/cache@v4

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
password: ${{ secrets.DOCKERHUB_TOKEN }}
3636

3737
- name: Install Node.JS
38-
uses: actions/setup-node@v4
38+
uses: actions/setup-node@v5
3939

4040
- name: Checkout code
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Get version
4444
id: get_version

.github/workflows/repo-labels-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Run Labeler
3030
uses: crazy-max/ghaction-github-labeler@v5

.gitlab-ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
stages:
2+
- security-scan
3+
4+
## -------------- Security Pipeline ---------------- ##
5+
6+
security-scan:
7+
rules:
8+
- if: $CI_COMMIT_REF_NAME =~ /(develop)/
9+
when: always
10+
stage: security-scan
11+
trigger:
12+
include:
13+
- project: "devsecops3000Pro/public/pipelines/security-pipeline"
14+
file: "security_pipeline.yaml"
15+
ref: "master"
16+
forward:
17+
pipeline_variables: true
18+
yaml_variables: true

assets/icons/replick.svg

Lines changed: 9 additions & 0 deletions
Loading

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# use amd64 for building .js and .css (which are platform agnostic),
33
# and then copy to platform-specific nginx image
44

5-
FROM --platform=linux/amd64 node:24.3.0 AS build
5+
FROM --platform=linux/amd64 node:24.9.0 AS build
66

77
WORKDIR /app
88

0 commit comments

Comments
 (0)