Skip to content

Commit

Permalink
switch ubuntu 22.10 to 23.10 because 22.10 is out of support window
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldsmith committed Nov 4, 2023
1 parent f6abcca commit 43e1133
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_linuxes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ jobs:
- name: Run unit tests (ctest) within the Docker image
run: docker run ctl:latest sh -c "cd ./build && ctest"

ubuntu-22-10:
ubuntu-23-10:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build --no-cache --rm -f ./docker/Dockerfile_ubuntu_22.10 -t ctl:latest .
run: docker build --no-cache --rm -f ./docker/Dockerfile_ubuntu_23.10 -t ctl:latest .

- name: Run unit tests (ctest) within the Docker image
run: docker run ctl:latest sh -c "cd ./build && ctest"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:22.10
FROM ubuntu:23.10

RUN apt-get -y update
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
Expand Down

0 comments on commit 43e1133

Please sign in to comment.