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
97 changes: 0 additions & 97 deletions .github/workflows/build-and-test.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ name: "CodeQL and Linter"
on:
push:

permissions:
contents: read

jobs:
analyze-shell:
name: Analyze Shell Scripts
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/docker-ops.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Docker Operations

"on":
push:
paths:
- ".github/workflows/docker-ops.yml"
- "Dockerfile"
- "ci/**"
- "src/**"
- LICENSE
workflow_dispatch:

jobs:
docker_ops:
permissions:
id-token: write
contents: write
security-events: write
actions: read

uses: udx/reusable-workflows/.github/workflows/docker-ops.yml@master
with:
image_name: worker-nodejs
release_branch: latest
docker_login: ${{ vars.DOCKER_LOGIN }}
docker_org: ${{ vars.DOCKER_ORG }}
docker_repo: ${{ vars.DOCKER_REPO }}
enable_security_upload: ${{ github.repository == 'udx/worker-nodejs' }}

secrets:
docker_token: ${{ secrets.DOCKER_TOKEN }}
156 changes: 0 additions & 156 deletions .github/workflows/release.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Use the latest udx-worker as the base image
FROM usabilitydynamics/udx-worker:0.35.0
FROM usabilitydynamics/udx-worker:0.36.0

# Add metadata labels
LABEL version="0.23.0"
LABEL version="0.24.0"

# Set build arguments for Node.js version and application port
ARG NODE_VERSION=22.21.1
Expand Down
Loading