Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
outputs:
new_tag: ${{ steps.rel.outputs.new_tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: docker/setup-buildx-action@v3

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run:
working-directory: middleware
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
run:
working-directory: web-ui
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
middleware/src/profileSnapshots/migrations
middleware/src/profileStorage/migrations
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Enable pgvector extension
run: |
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
run:
working-directory: ${{ matrix.workspace }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/desktop-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
shell: bash
steps:
- name: Checkout the released tag
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
ref: ${{ github.event.release.tag_name || inputs.tag }}

Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
# stapled installers — not a pre-notarization copy.
- name: Upload installers as run artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: omadia-installers-${{ matrix.os }}
if-no-files-found: ignore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
build_args: |
MIDDLEWARE_URL=http://middleware:8080
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-qemu-action@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run:
working-directory: middleware
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v4
with:
node-version: '22'
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# botbuilder (@azure/msal-node family) have post-install hooks that break on
# Alpine's musl libc without extra build tools. Slim keeps the image small
# while staying on glibc.
FROM node:22.22.3-slim AS builder
FROM node:22.23.1-slim AS builder
ARG TARGETARCH
WORKDIR /app

Expand Down Expand Up @@ -38,7 +38,7 @@ COPY middleware/scripts ./scripts
RUN npm run build

# --- runtime ----------------------------------------------------------------
FROM node:22.22.3-slim AS runtime
FROM node:22.23.1-slim AS runtime
ARG TARGETARCH
WORKDIR /app

Expand Down
Loading
Loading