Skip to content

Commit

Permalink
fix(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent 2ef35fe commit 606cc94
Show file tree
Hide file tree
Showing 21 changed files with 109 additions and 114 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
integration-tests:
name: Integration Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
Expand All @@ -37,7 +37,7 @@ jobs:
cypress-e2e:
name: E2E Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: frontend
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
codeql:
name: CodeQL
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:
trivy:
name: Trivy Security Scan
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
Expand All @@ -61,7 +61,7 @@ jobs:
tests:
name: Tests
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5
services:
postgres:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
name: Results
needs: [codeql, trivy, tests]
if: always() && (! failure())
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
- run: echo "Success!"
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
deploys:
name: Helm
environment: ${{ inputs.environment }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/loadtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
loadtests:
name: Loadtests
environment: ${{ inputs.environment }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v4

- name: Run All JMeter Tests In tests Folder
uses: rbhadti94/apache-jmeter-action@v0.5.0
uses: rbhadti94/apache-jmeter-action@v0.7.0
with:
testFilePath: loadtests
outputReportsFolder: loadtests/results
Expand All @@ -48,7 +48,7 @@ jobs:
-JVEHICLES_API_URL=${{inputs.vehicles_api_url}}
-JRESULTS_DIR=loadtest/results
- uses: actions/upload-artifact@v4.3.6
- uses: actions/upload-artifact@v4.4.0
with:
name: jmeter-test-results
path: loadtests/results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Set Variables
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
# Get PR number for squash merges to main
Expand All @@ -46,7 +46,7 @@ jobs:
promote-images-test:
name: Promote Images - Test
needs: [deploys-test, vars]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
notify-teams-pr:
if: ${{github.event.workflow_run.event == 'pull_request'}}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: simbo/msteams-message-card-action@latest
with:
Expand All @@ -27,7 +27,7 @@ jobs:
text: PR Opened
notify-teams-merged:
if: ${{github.event.workflow_run.event == 'push'}}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: PR Number
id: pr
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOMAIN: apps.silver.devops.gov.bc.ca
PREFIX: ${{ github.event.repository.name }}-${{ github.event.number }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write
timeout-minutes: 1
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
name: Set Variables
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: PR Number
id: pr
Expand All @@ -57,7 +57,7 @@ jobs:
builds:
name: Builds
needs: [vars]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
outputs:
pr: ${{ steps.pr.outputs.pr }}
release-name: ${{ steps.release-name.outputs.release-name }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
# Get PR number for squash merges to main
Expand All @@ -35,7 +35,7 @@ jobs:
promote-images-release:
name: Promote Images - Release
needs: [vars]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand All @@ -61,7 +61,7 @@ jobs:
promote-images-uat:
name: Promote Images - Uat
needs: [vars,deploys-uat]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand All @@ -87,7 +87,7 @@ jobs:
promote-images-prod:
name: Promote Images - Prod
needs: [vars,deploys-prod]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: [dops, frontend, vehicles, policy, scheduler]
steps:
- name: ZAP Scan
uses: zaproxy/action-full-scan@v0.10.0
uses: zaproxy/action-full-scan@v0.11.0
with:
allow_issue_writing: true
artifact_name: "zap_${{ matrix.name }}"
Expand All @@ -30,7 +30,7 @@ jobs:

generate-schema-spy:
name: Generate SchemaSpy Documentation
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
postgres:
image: postgres
Expand Down
4 changes: 2 additions & 2 deletions dops/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build container.
FROM node:20.15.1-alpine AS builder
FROM node:20.17.0-alpine AS builder

# Set the working directory to /app inside the container
WORKDIR /app
Expand All @@ -21,7 +21,7 @@ RUN npm prune --production


# Deployment container
FROM node:20.15.1-alpine
FROM node:20.17.0-alpine
RUN npm cache clean --force

# Create and Assign permissions to npm folder
Expand Down
14 changes: 7 additions & 7 deletions dops/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,32 +62,32 @@
"@nestjs/typeorm": "^10.0.2",
"@types/response-time": "^2.3.8",
"axios-retry": "^4.5.0",
"cache-manager": "^5.7.6",
"cache-manager": "^6.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"helmet": "^8.0.0",
"jwks-rsa": "^3.1.0",
"mssql": "^10.0.4",
"mssql": "^11.0.0",
"nest-winston": "^1.10.0",
"nestjs-cls": "^4.4.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pdf-lib": "^1.17.1",
"puppeteer": "^22.15.0",
"puppeteer": "^23.0.0",
"response-time": "^2.3.2",
"rxjs": "^7.8.1",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"typescript-eslint": "^7.18.0",
"uuid": "^9.0.1",
"uuid": "^10.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.5.4",
"@types/express": "^4.17.21",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.12",
"@types/node": "^20.16.1",
Expand All @@ -108,7 +108,7 @@
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"rimraf": "^6.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.15.1-alpine AS builder
FROM node:20.17.0-alpine AS builder

# Set the working directory to /app inside the container
WORKDIR /app
Expand Down
20 changes: 10 additions & 10 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/x-date-pickers": "^6.20.2",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@mui/x-date-pickers": "^7.0.0",
"@tanstack/react-query": "^5.52.2",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.7.5",
"dayjs": "^1.11.13",
"lottie-web": "^5.12.2",
"material-react-table": "^2.13.1",
"material-react-table": "^3.0.0",
"mui-nested-menu": "^3.4.0",
"oidc-client-ts": "^3.0.1",
"react": "^18.3.1",
Expand All @@ -29,7 +29,7 @@
"react-oidc-context": "^3.1.0",
"react-router-dom": "^6.26.1",
"sass": "^1.77.8",
"uuid": "^9.0.1",
"uuid": "^10.0.0",
"validator": "^13.12.0"
},
"scripts": {
Expand Down Expand Up @@ -58,7 +58,7 @@
"@hookform/devtools": "^4.3.1",
"@mswjs/data": "^0.16.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.1",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/material-ui": "^0.21.17",
"@types/node": "^20.16.2",
Expand All @@ -69,24 +69,24 @@
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/coverage-v8": "^2.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"jsdom": "^24.1.3",
"jsdom": "^25.0.0",
"msw": "^2.4.1",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^2.0.0",
"vitest-canvas-mock": "^0.3.3"
},
"overrides": {
Expand Down
Loading

0 comments on commit 606cc94

Please sign in to comment.