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

on:
push:
branches-ignore: latest
branches-ignore:
- latest
paths:
- '.github/workflows/build-and-test.yml'
- 'Dockerfile'
- 'bin/**'
- 'src/**'
- ".github/workflows/build-and-test.yml"
- "Dockerfile"
- "bin/**"
- "src/**"
- LICENSE

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "CodeQL and Linter Analysis"

on:
"on":
push:

jobs:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Release

on:
"on":
push:
branches:
- "latest"
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
driver: docker-container

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v3.2.1
uses: gittools/actions/gitversion/setup@v4.0.0
with:
versionSpec: "6.0.0"

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

- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v3.2.1
uses: gittools/actions/gitversion/execute@v4.0.0
with:
useConfigFile: true
configFilePath: ci/git-version.yml
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the UDX worker as the base image
FROM usabilitydynamics/udx-worker:0.20.0
FROM usabilitydynamics/udx-worker:0.21.0

# Add metadata labels
LABEL maintainer="UDX"
Expand All @@ -8,7 +8,7 @@ LABEL version="0.16.0"
# Arguments and Environment Variables
ARG PHP_VERSION=8.4
ARG PHP_PACKAGE_VERSION=8.4.5-1ubuntu1
ARG NGINX_VERSION=1.26.3-2ubuntu1
ARG NGINX_VERSION=1.26.3-2ubuntu1.1

# Set the PHP_VERSION and PHP_PACKAGE_VERSION as environment variables
ENV PHP_VERSION="${PHP_VERSION}"
Expand Down
Loading