-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Adding changelog * feat: Using NodeJS 20 as default * chore(deps): update dependency @types/node to v20.8.10 * chore(deps): update dependency @types/jest to v29.5.7 * fix(deps): update dependency @slack/webhook to v7.0.1 * chore(deps): update helm/chart-testing-action action to v2.6.1 * fix(deps): update dependency @continuoussecuritytooling/keycloak-auditor to v1.1.1 * fix(deps): update dependency npm to v10.2.3 * chore(deps): update dependency eslint to v8.53.0 * chore(deps): update helm/chart-releaser-action action to v1.6.0 * chore(deps): update typescript-eslint monorepo to v6.10.0 * chore(deps): update dependency @types/jest to v29.5.8 * chore(deps): update dependency @types/yargs to v17.0.31 * chore(deps): update dependency @types/node to v20.9.0 * chore(deps): update dependency @typescript-eslint/eslint-plugin to v6.11.0 * chore(deps): update dependency @typescript-eslint/parser to v6.11.0 * chore: Fix chart release * chore: Bump chart * Changelog --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2afcbbe
commit e3d779c
Showing
7 changed files
with
332 additions
and
1,043 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 |
---|---|---|
|
@@ -18,6 +18,7 @@ jobs: | |
node_version: | ||
- 18 | ||
- 20 | ||
- 21 | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
|
@@ -55,7 +56,7 @@ jobs: | |
check-latest: true | ||
|
||
- name: Helm Chart Testing | ||
uses: helm/[email protected].0 | ||
uses: helm/[email protected].1 | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
|
@@ -89,6 +90,8 @@ jobs: | |
matrix: | ||
node_version: | ||
- 18 | ||
- 20 | ||
- 21 | ||
os: | ||
- ubuntu-latest | ||
steps: | ||
|
@@ -136,7 +139,7 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
# renovate: datasource=docker depName=node | ||
node-version: '18' | ||
node-version: '20' | ||
- name: 'Build Package' | ||
run: | | ||
npm run clean | ||
|
@@ -145,18 +148,19 @@ jobs: | |
- name: Write version vars | ||
run: | | ||
BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` | ||
VERSION=${GITHUB_REF_NAME#v} | ||
echo Version: $VERSION | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
echo "APP_VERSION=$VERSION" >> $GITHUB_ENV | ||
BRANCH=${GITHUB_REF_NAME#v} | ||
APP_VERSION=$(cat package.json | grep version| head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g') | ||
echo Version: $APP_VERSION | ||
echo "VERSION=$APP_VERSION" >> $GITHUB_ENV | ||
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV | ||
echo "BUILD_DATE=$BUILD_DATE" >> $GITHUB_ENV | ||
- name: Build Container Image | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
with: | ||
image: continuoussecuritytooling/keycloak-reporting-cli | ||
tags: 'next ${{env.APP_VERSION}}_rc' | ||
tags: 'latest next ${{env.APP_VERSION}} ${{env.APP_VERSION}}_rc' | ||
containerfiles: | | ||
./Dockerfile | ||
build-args: | | ||
|
@@ -168,7 +172,7 @@ jobs: | |
uses: redhat-actions/push-to-registry@v2 | ||
with: | ||
image: ${{ steps.build-image.outputs.image }} | ||
tags: ${{ steps.build-image.outputs.tags }} | ||
tags: 'next ${{env.APP_VERSION}}_rc' | ||
registry: registry.hub.docker.com | ||
username: continuoussecuritytooling | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
|
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 |
---|---|---|
|
@@ -31,13 +31,13 @@ jobs: | |
python-version: '3.9' | ||
check-latest: true | ||
- name: Set up chart-testing | ||
uses: helm/[email protected].0 | ||
uses: helm/[email protected].1 | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --config .ct.yaml | ||
run: ct lint --config .ct.yaml | ||
|
||
- name: Run chart-releaser | ||
uses: helm/chart-releaser-action@v1.5.0 | ||
uses: helm/chart-releaser-action@v1.6.0 | ||
with: | ||
charts_dir: charts/ | ||
env: | ||
|
@@ -49,6 +49,7 @@ jobs: | |
- name: Push Charts to GHCR | ||
run: | | ||
cd charts/ | ||
for pkg in .cr-release-packages/*; do | ||
if [ -z "${pkg:-}" ]; then | ||
break | ||
|
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,4 +1,5 @@ | ||
FROM node:18 | ||
# renovate: datasource=docker depName= | ||
FROM node:20 | ||
|
||
ARG BUILD_DATE | ||
ARG APP_VERSION | ||
|
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
Oops, something went wrong.