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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Runs on pull requests to master when there are changes to the service files in services/
# Runs on pull requests to main when there are changes to the service files in services/
# Lints and Unit tests the services that have changed

name: Service CI

on:
pull_request:
branches: [master]
branches: [main]
paths: ["services/**"]
push:
branches: [master]
branches: [main]
tags: ["v*"]
paths: ["services/**"]

env:
NODE_VERSION: 14.x
NODE_VERSION: 22.x
REGISTRY: ghcr.io

jobs:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
- name: Check for changes
uses: dorny/paths-filter@v2
uses: dorny/paths-filter@v3
id: filter
with:
filters: .github/filters.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name: "CodeQL"

on:
push:
branches: [master]
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
branches: [main]
schedule:
- cron: '0 13 * * 1'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release Charts
on:
push:
branches:
- master
- main
paths:
- charts/**
- '!charts/**/README.md'
Expand Down
1 change: 1 addition & 0 deletions services/auth-service/nodejs/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22.17
2 changes: 1 addition & 1 deletion services/auth-service/nodejs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.15-alpine
FROM node:22.17-alpine

# Create server directory
WORKDIR /usr/src/server
Expand Down
Loading
Loading