Skip to content

Commit 5dd100a

Browse files
committed
chore(ci): Update Ubuntu 23.10 image to Ubuntu 24.10
23.10 has been deprecated since July 11, 2024.
1 parent d7d781e commit 5dd100a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build-script: ubuntu_deb_entrypoint.sh
2323
build-type: release
2424

25-
- image: ubuntu-23_10
25+
- image: ubuntu-24_10
2626
build-script: ubuntu_deb_entrypoint.sh
2727
build-type: release
2828
steps:

Dockerfiles/ubuntu-23_10 renamed to Dockerfiles/ubuntu-24_10

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# vim: set syntax=dockerfile:
2-
FROM ubuntu:23.10
2+
FROM ubuntu:24.10
33

4-
LABEL org.opencontainers.image.description="Base image used to build and DEB-package Notes on Ubuntu 23.10"
4+
LABEL org.opencontainers.image.description="Base image used to build and DEB-package Notes on Ubuntu 24.10"
55

66
# Prevent tzdata from asking for input.
77
ENV DEBIAN_FRONTEND=noninteractive
88

9+
# Silences a locale-related warning from AutoUic.
10+
ENV LANG=C.UTF-8
11+
912
# Install dependencies.
1013
RUN apt-get update && \
1114
apt-get install -y --no-install-recommends cmake git g++ libgl-dev lintian qt6-base-private-dev qt6-declarative-dev && \

0 commit comments

Comments
 (0)