Skip to content

Commit

Permalink
docker, actions: Update for Ubuntu 24.04 (#39548)
Browse files Browse the repository at this point in the history
GitHub is preparing to roll out Ubuntu 24.04 to Actions. This prepares
us for that.

* Update our own Docker development environment to be based on 24.04.
* `svn` has been removed from the default Actions image. Install it
  manually where needed.
  • Loading branch information
anomiex authored Sep 26, 2024
1 parent f439ad8 commit cc8772d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
fi
exit $EXIT
- name: Install svn
run: command -v svn || sudo apt-get install -y subversion

- uses: actions/checkout@v4
with:
path: src
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

VOLUME ["/var/www/html"]

Expand Down

0 comments on commit cc8772d

Please sign in to comment.