From 6735d660b3d0fd709e1f0f31f24c9b61995c4987 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 21:16:45 +0000 Subject: [PATCH] chore(deps): update dependency ubuntu to v24 --- .github/workflows/ci.yml | 8 ++++---- dist/docker/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f345f1f4..561591a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: jobs: build-linux20: # fails because of a bug in frida on ubuntu20 .. probably invalid stat struct - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 continue-on-error: true steps: - uses: actions/checkout@v4 @@ -36,7 +36,7 @@ jobs: name: build-linux20 path: dist/debian/*.deb build-linux20-precompiled: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Installing radare2 @@ -50,7 +50,7 @@ jobs: - name: Packaging run: make -C dist/debian R2CFG_FLAGS=--with-precompiled-agent build-linux22: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Building Radare2 @@ -67,7 +67,7 @@ jobs: name: build-linux22 path: dist/debian/*.deb build-agent: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Building Radare2 diff --git a/dist/docker/Dockerfile b/dist/docker/Dockerfile index 0475809e..4ef3f83f 100644 --- a/dist/docker/Dockerfile +++ b/dist/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:24.04 # FROM ubuntu:22.04 RUN apt update