Skip to content

Commit 2394de5

Browse files
authored
Merge pull request #56 from udx/worker-upgrade
Worker Upgrade
2 parents 9cf6a3a + 27f2205 commit 2394de5

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Install ShellCheck
1717
run: sudo apt-get install -y shellcheck
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Install hadolint
3232
run: |
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949

5050
- name: Install yamllint
5151
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232

@@ -128,7 +128,7 @@ jobs:
128128

129129
steps:
130130
- name: Checkout code
131-
uses: actions/checkout@v5
131+
uses: actions/checkout@v6
132132
with:
133133
fetch-depth: 0
134134

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Use the UDX worker as the base image
2-
FROM usabilitydynamics/udx-worker:0.31.0
2+
FROM usabilitydynamics/udx-worker:0.33.0
33

44
# Add metadata labels
55
LABEL maintainer="UDX"
6-
LABEL version="0.27.0"
6+
LABEL version="0.28.0"
77

88
# Arguments and Environment Variables
99
ARG PHP_VERSION=8.4
@@ -28,7 +28,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2828
php"${PHP_VERSION}"-curl="${PHP_PACKAGE_VERSION}" \
2929
php"${PHP_VERSION}"-xml="${PHP_PACKAGE_VERSION}" \
3030
php"${PHP_VERSION}"-zip="${PHP_PACKAGE_VERSION}" \
31-
mysql-client=8.4.6-0ubuntu0.25.04.3 && \
31+
mysql-client=8.4.7-0ubuntu0.25.04.1 && \
3232
apt-get clean && \
3333
rm -rf /tmp/* /var/tmp/* && \
3434
mkdir -p /etc/apt/sources.list.d && \

0 commit comments

Comments
 (0)