Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update dependencies (renov): all minor updates
Browse files Browse the repository at this point in the history
renovate[bot] authored Jan 22, 2025
1 parent 3341235 commit 3651456
Showing 10 changed files with 259 additions and 864 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-codescan.yml
Original file line number Diff line number Diff line change
@@ -39,13 +39,13 @@ jobs:
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
debug: true

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/issue.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
name: Adding Issue Label
runs-on: ubuntu-latest
steps:
- uses: Renato66/auto-label@v2.3.0
- uses: Renato66/auto-label@v3.1.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
ignore-comments: true
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-target.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add the PR Review Policy
uses: thollander/actions-comment-pull-request@v2
uses: thollander/actions-comment-pull-request@v3
with:
comment_tag: pr_review_policy
message: |
18 changes: 9 additions & 9 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ jobs:
# or else we'll get failures
- name: Get changed files
id: changed_files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v45
with:
files: |
**.ts
@@ -105,7 +105,7 @@ jobs:

- name: Get Changed Unauthorized files
id: changed-unauth-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v45
with:
files: |
.github/**
@@ -160,7 +160,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v45

- name: Echo number of changed files
env:
@@ -228,7 +228,7 @@ jobs:
node-version: [22.x]
services:
mongo:
image: mongo:4.4
image: mongo:8.0
options: >-
--health-cmd mongo
--health-interval 10s
@@ -237,7 +237,7 @@ jobs:
ports:
- 27017:27017
redis:
image: redis:6.0
image: redis:7.4
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
@@ -302,15 +302,15 @@ jobs:
run: npm run import:sample-data

- name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}}
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
name: '${{env.CODECOV_UNIQUE_NAME}}'

- name: Test acceptable level of code coverage
uses: VeryGoodOpenSource/very_good_coverage@v2
uses: VeryGoodOpenSource/very_good_coverage@v3
with:
path: './coverage/lcov.info'
min_coverage: 95.0
@@ -448,7 +448,7 @@ jobs:
node-version: [22.x]
services:
mongo:
image: mongo:4.4
image: mongo:8.0
options: >-
--health-cmd mongo
--health-interval 10s
@@ -457,7 +457,7 @@ jobs:
ports:
- 27017:27017
redis:
image: redis:6.0
image: redis:7.4
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ jobs:
node-version: [22.x]
services:
redis:
image: redis:6.0
image: redis:7.4
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
@@ -43,7 +43,7 @@ jobs:
ports:
- 6379:6379
mongo:
image: mongo:4.4
image: mongo:8.0
options: >-
--health-cmd mongo
--health-interval 10s
@@ -84,7 +84,7 @@ jobs:

# Upload Coverage
- name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}}
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Install Dependencies
FROM node:20.10.0 AS builder
FROM node:22.13.1 AS builder

WORKDIR /usr/src/app

Loading

0 comments on commit 3651456

Please sign in to comment.