Skip to content

Commit e7aa612

Browse files
chore(deps): update all non-major dependencies (#150)
This PR contains the following updates: | Package | Type | Update | Change | Pending | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---|---| | docker.io/alpine | final | minor | `3.22.2` -> `3.23.0` | | ![age](https://developer.mend.io/api/mc/badges/age/docker/docker.io%2falpine/3.23.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/docker.io%2falpine/3.22.2/3.23.0?slim=true) | | docker.io/postgres | | patch | `18.1-alpine3.22` -> `18.1-alpine3.23` | | ![age](https://developer.mend.io/api/mc/badges/age/docker/docker.io%2fpostgres/18.1-alpine3.23?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/docker.io%2fpostgres/18.1-alpine3.22/18.1-alpine3.23?slim=true) | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | patch | `v4.31.7` -> `v4.31.8` | | ![age](https://developer.mend.io/api/mc/badges/age/github-tags/github%2fcodeql-action/v4.31.8?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/github%2fcodeql-action/v4.31.7/v4.31.8?slim=true) | | [node](https://redirect.github.com/actions/node-versions) | uses-with | minor | `24.11.1` -> `24.12.0` | | ![age](https://developer.mend.io/api/mc/badges/age/github-releases/actions%2fnode-versions/24.12.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/actions%2fnode-versions/24.11.1/24.12.0?slim=true) | | [prettier](https://prettier.io) ([source](https://redirect.github.com/prettier/prettier)) | devDependencies | patch | [`3.7.3` -> `3.7.4`](https://renovatebot.com/diffs/npm/prettier/3.7.3/3.7.4) | | ![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.7.4?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.7.3/3.7.4?slim=true) | | [tsx](https://tsx.is) ([source](https://redirect.github.com/privatenumber/tsx)) | devDependencies | minor | [`4.20.6` -> `4.21.0`](https://renovatebot.com/diffs/npm/tsx/4.20.6/4.21.0) | | ![age](https://developer.mend.io/api/mc/badges/age/npm/tsx/4.21.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/tsx/4.20.6/4.21.0?slim=true) | | [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)) | devDependencies | patch | [`8.48.0` -> `8.48.1`](https://renovatebot.com/diffs/npm/typescript-eslint/8.48.0/8.48.1) | `8.49.0` | ![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.48.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.48.0/8.48.1?slim=true) | --- ### Release Notes <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v4.31.8`](https://redirect.github.com/github/codeql-action/releases/tag/v4.31.8) [Compare Source](https://redirect.github.com/github/codeql-action/compare/v4.31.7...v4.31.8) ##### CodeQL Action Changelog See the [releases page](https://redirect.github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. ##### 4.31.8 - 11 Dec 2025 - Update default CodeQL bundle version to 2.23.8. [#&#8203;3354](https://redirect.github.com/github/codeql-action/pull/3354) See the full [CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v4.31.8/CHANGELOG.md) for more information. </details> <details> <summary>actions/node-versions (node)</summary> ### [`v24.12.0`](https://redirect.github.com/actions/node-versions/releases/tag/24.12.0-20140960970): 24.12.0 [Compare Source](https://redirect.github.com/actions/node-versions/compare/24.11.1-19282993875...24.12.0-20140960970) Node.js 24.12.0 </details> <details> <summary>prettier/prettier (prettier)</summary> ### [`v3.7.4`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#374) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.7.3...3.7.4) [diff](https://redirect.github.com/prettier/prettier/compare/3.7.3...3.7.4) ##### LWC: Avoid quote around interpolations ([#&#8203;18383](https://redirect.github.com/prettier/prettier/pull/18383) by [@&#8203;kovsu](https://redirect.github.com/kovsu)) <!-- prettier-ignore --> ```html <!-- Input --> <div foo={bar}> </div> <!-- Prettier 3.7.3 (--embedded-language-formatting off) --> <div foo="{bar}"></div> <!-- Prettier 3.7.4 (--embedded-language-formatting off) --> <div foo={bar}></div> ``` ##### TypeScript: Fix comment inside union type gets duplicated ([#&#8203;18393](https://redirect.github.com/prettier/prettier/pull/18393) by [@&#8203;fisker](https://redirect.github.com/fisker)) <!-- prettier-ignore --> ```tsx // Input type Foo = (/** comment */ a | b) | c; // Prettier 3.7.3 type Foo = /** comment */ (/** comment */ a | b) | c; // Prettier 3.7.4 type Foo = /** comment */ (a | b) | c; ``` ##### TypeScript: Fix unstable comment print in union type comments ([#&#8203;18395](https://redirect.github.com/prettier/prettier/pull/18395) by [@&#8203;fisker](https://redirect.github.com/fisker)) <!-- prettier-ignore --> ```tsx // Input type X = (A | B) & ( // comment A | B ); // Prettier 3.7.3 (first format) type X = (A | B) & (// comment A | B); // Prettier 3.7.3 (second format) type X = ( | A | B // comment ) & (A | B); // Prettier 3.7.4 type X = (A | B) & // comment (A | B); ``` </details> <details> <summary>privatenumber/tsx (tsx)</summary> ### [`v4.21.0`](https://redirect.github.com/privatenumber/tsx/compare/v4.20.6...f6284cd50575ce6e8d110f63266d66cb9cde3b88) [Compare Source](https://redirect.github.com/privatenumber/tsx/compare/v4.20.6...v4.21.0) </details> <details> <summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary> ### [`v8.48.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8481-2025-12-02) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.48.0...v8.48.1) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on Sunday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/8hobbies/commitrack). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3bc7d90 commit e7aa612

File tree

14 files changed

+770
-287
lines changed

14 files changed

+770
-287
lines changed

.github/workflows/dockerfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Use Node.js
3838
uses: actions/setup-node@v6.1.0
3939
with:
40-
node-version: 24.11.1
40+
node-version: 24.12.0
4141
cache: "npm"
4242

4343
- name: Install npm dependencies

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Use Node.js
3535
uses: actions/setup-node@v6.1.0
3636
with:
37-
node-version: 24.11.1
37+
node-version: 24.12.0
3838
cache: "npm"
3939

4040
- name: Install Dependencies

.github/workflows/runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Use Node.js
3838
uses: actions/setup-node@v6.1.0
3939
with:
40-
node-version: 24.11.1
40+
node-version: 24.12.0
4141
cache: "npm"
4242

4343
- name: Install Dependencies

.github/workflows/trivy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Use Node.js
4343
uses: actions/setup-node@v6.1.0
4444
with:
45-
node-version: 24.11.1
45+
node-version: 24.12.0
4646
cache: "npm"
4747

4848
- name: Install npm dependencies
@@ -55,13 +55,13 @@ jobs:
5555
continue-on-error: true
5656

5757
- name: Upload Trivy fs scan results to GitHub Security tab
58-
uses: github/codeql-action/upload-sarif@v4.31.7
58+
uses: github/codeql-action/upload-sarif@v4.31.8
5959
with:
6060
category: "trivy-fs"
6161
sarif_file: "fs.sarif"
6262

6363
- name: Upload Trivy image scan results to GitHub Security tab
64-
uses: github/codeql-action/upload-sarif@v4.31.7
64+
uses: github/codeql-action/upload-sarif@v4.31.8
6565
with:
6666
category: "trivy-image"
6767
sarif_file: "image.sarif"

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
- commitrack
4444

4545
db:
46-
image: docker.io/postgres:18.1-alpine3.22@sha256:154ea39af68ff30dec041cd1f1b5600009993724c811dbadde54126eb10bedd1
46+
image: docker.io/postgres:18.1-alpine3.23@sha256:eca6fb2d91fda290eb8cfb8ba53dd0dcbf3508a08011e30adb039ea7c8e1e9f2
4747
container_name: commitrack-db
4848
ports:
4949
- "5432:5432"

0 commit comments

Comments
 (0)