Skip to content
Open
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
8 changes: 7 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@ updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: daily
interval: weekly
open-pull-requests-limit: 3

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 3
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

jobs:
main:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Code checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
release:
if: github.event_name == 'create' && github.event.ref_type == 'tag'
name: Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Code checkout
uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ jobs:
fail-fast: false
matrix:
include:
- runner: ubuntu-22.04
- runner: ubuntu-24.04
coreboot-tests: true
- runner: bookworm-arm64
coreboot-tests: false
steps:
- name: Remove stale build artifacts
run: |
sudo rm -rf build || true
- name: Code checkout
uses: actions/checkout@v4
with:
Expand Down
1 change: 1 addition & 0 deletions scripts/dev_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ cmd_build() {

$DOCKER_RUNTIME run \
--workdir "$CTR_RHF_ROOT_DIR" \
--user "$(id -u):$(id -g)" \
--rm \
--volume $exported_device \
--volume "$RHF_ROOT_DIR:$CTR_RHF_ROOT_DIR" $exported_volumes \
Expand Down
Loading