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/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'

# from https://github.com/actions/cache/blob/main/examples.md#node---yarn-2
- name: Get yarn cache directory path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
registry-url: https://registry.npmjs.org/ # Needed for auth

- name: cache all node_modules
Expand Down
2 changes: 1 addition & 1 deletion .yarn/plugins/@yarnpkg/plugin-backstage.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion backstage.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.40.1"
"version": "1.47.3"
}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^6.0.0",
"husky": "^9.1.1",
"jest": "29",
"jest-environment-jsdom": "29",
"lerna": "^7.3.0",
"lint-staged": "^15.2.7",
"node-gyp": "^10.0.0",
Expand All @@ -50,7 +52,8 @@
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
"@types/react-dom": "^18",
"isolated-vm": "6.0.2"
},
"prettier": "@backstage/cli/config/prettier",
"lint-staged": {
Expand Down
6 changes: 3 additions & 3 deletions packages/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# From https://github.com/janus-idp/backstage-showcase/
# Stage 1 - Build nodejs skeleton

FROM registry.access.redhat.com/ubi9/nodejs-20:9.6-1749604222 AS skeleton
FROM registry.access.redhat.com/ubi9/nodejs-22:9.7-1771865410 AS skeleton
USER 0
Comment thread
MonicaG marked this conversation as resolved.

RUN dnf install -y -q --allowerasing --nobest \
Expand Down Expand Up @@ -57,8 +57,8 @@ COPY $EXTERNAL_SOURCE/app-config.yaml \
# Install production dependencies
RUN "$YARN" workspaces focus --all --production && "$YARN" cache clean

# Stage 5 - Build the runner image
FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:9.6-1750862880 AS runner
# Stage 5 - Build the runner image
FROM registry.access.redhat.com/ubi9/nodejs-22-minimal:9.7-1771388883 AS runner
USER 0
Comment thread
MonicaG marked this conversation as resolved.

# Env vars
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@backstage/plugin-search-backend-module-techdocs": "backstage:^",
"@backstage/plugin-search-backend-node": "backstage:^",
"@backstage/plugin-techdocs-backend": "backstage:^",
"@roadiehq/scaffolder-backend-module-http-request": "^4.3.5",
"@roadiehq/scaffolder-backend-module-http-request": "5.5.1",
"@roadiehq/scaffolder-backend-module-utils": "^3.3.0",
"app": "link:../app",
"express": "^4.17.1",
Expand Down
2 changes: 1 addition & 1 deletion plugins/scaffolder-backend-module-snowplow/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
createBackendModule,
coreServices,
} from '@backstage/backend-plugin-api';
import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';
import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node';
import { createSnowplowAction } from './actions/snowplow';

/**
Expand Down
Loading