-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
8,666 additions
and
9,437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: maven | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
target-branch: dev | ||
ignore: | ||
- dependency-name: org.eclipse.jetty:jetty-maven-plugin | ||
versions: | ||
- 11.0.0 | ||
- 11.0.1 | ||
- dependency-name: com.eduworks:org.credentialengine | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:cass.adapter | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:cass.import | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:cass.rollup | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:ebac.identity | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:cass.competency | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:forge | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:kbac.skyrepo | ||
versions: | ||
- 3.1.2 | ||
- 3.1.3 | ||
- 3.1.7 | ||
- dependency-name: com.eduworks:ew.db.mapdb | ||
versions: | ||
- 5.16.4 | ||
- dependency-name: com.eduworks:ew.levr.rdf | ||
versions: | ||
- 5.16.4 | ||
- dependency-name: com.eduworks:ew.levr.net | ||
versions: | ||
- 5.16.4 | ||
- dependency-name: com.eduworks:ew.levr.db.mapdb | ||
versions: | ||
- 5.16.4 | ||
- dependency-name: com.eduworks:ew.levr.security | ||
versions: | ||
- 5.16.4 | ||
- dependency-name: com.eduworks:ew.levr.base | ||
versions: | ||
- 5.16.4 | ||
target-branch: "master" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,39 @@ | ||
# Dependency Review Action | ||
# | ||
# This Action will scan dependency manifest files that change as part of a Pull Reqest, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging. | ||
# This Action will scan dependency manifest files that change as part of a Pull Request, | ||
# surfacing known-vulnerable versions of the packages declared or updated in the PR. | ||
# Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable | ||
# packages will be blocked from merging. | ||
# | ||
# Source repository: https://github.com/actions/dependency-review-action | ||
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement | ||
name: 'Dependency Review' | ||
on: [pull_request] | ||
name: 'Dependency review' | ||
on: | ||
pull_request: | ||
branches: [ "master","1.5","1.6" ] | ||
|
||
# If using a dependency submission action in this workflow this permission will need to be set to: | ||
# | ||
# permissions: | ||
# contents: write | ||
# | ||
# https://docs.github.com/en/enterprise-cloud@latest/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api | ||
permissions: | ||
contents: read | ||
# Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option | ||
pull-requests: write | ||
|
||
jobs: | ||
dependency-review: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout Repository' | ||
uses: actions/checkout@v3 | ||
- name: 'Checkout repository' | ||
uses: actions/checkout@v4 | ||
- name: 'Dependency Review' | ||
uses: actions/dependency-review-action@v1 | ||
uses: actions/dependency-review-action@v4 | ||
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options. | ||
with: | ||
comment-summary-in-pr: always | ||
# fail-on-severity: moderate | ||
deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later | ||
# retry-on-snapshot-warnings: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
FROM node:20.15.1-bullseye-slim | ||
WORKDIR /app | ||
COPY package*.json ./ | ||
COPY pm2.test.config.js ./pm2.config.js | ||
RUN npm install --omit=dev | ||
COPY src src | ||
CMD npm run run && npm run logs | ||
ENTRYPOINT ["node","src/main/server.js"] |
Oops, something went wrong.