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
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Build and Test Docker Image

on:
push:
branches-ignore: latest
branches-ignore:
- latest
paths:
- '.github/workflows/build-and-test.yml'
- 'Dockerfile'
Expand All @@ -18,7 +19,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
Expand All @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install hadolint
run: |
Expand All @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install yamllint
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -35,7 +35,7 @@ jobs:
driver: docker-container

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v4.0.1
uses: gittools/actions/gitversion/setup@v4.1.0
with:
versionSpec: "6.1.0"

Expand All @@ -44,7 +44,7 @@ jobs:

- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v4.0.1
uses: gittools/actions/gitversion/execute@v4.1.0
with:
useConfigFile: true
configFilePath: ci/git-version.yml
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -137,7 +137,7 @@ jobs:
git config --global user.name "UDX Worker NodeJS"

- name: Download SBOM Artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: sbom

Expand Down
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.24.0
FROM usabilitydynamics/udx-worker:0.29.0

# Add metadata labels
LABEL version="0.16.0"
LABEL version="0.17.0"

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