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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ jobs:
tags: |
type=ref,event=tag
type=raw,value=latest
type=raw,value=noble
type=raw,value=resolute
type=raw,value=26.04

- name: Log in to GitHub Docker Registry
uses: docker/login-action@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The devcontainer should use the developer target and run as root with podman
# or docker with user namespaces.
FROM ubuntu:noble-20260410
FROM ubuntu:resolute-20260413

# Add any system dependencies for the developer/build environment here
RUN apt-get update && \
Expand Down
16 changes: 16 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,21 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"baseBranches": [
"main",
"noble"
],
"packageRules": [
{
"matchBaseBranches": ["main"],
"matchDepNames": ["ubuntu"],
"allowedVersions": "/^resolute(-.*)?$/"
},
{
"matchBaseBranches": ["noble"],
"matchDepNames": ["ubuntu"],
"allowedVersions": "/^noble(-.*)?$/"
}
]
}