From fc4caa4bff0c8c6f5a22086e356646cde44a2d3d Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 17 Apr 2025 20:43:54 -0400 Subject: [PATCH 1/2] chore: bump runs-on image from ubuntu-22.04 to ubuntu-24.04 --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/tagged-release.yml | 2 +- Vagrantfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ede6b1f..6c4a571 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ name: CI on: pull_request: branches: - - '*' + - "*" push: branches: - master @@ -17,7 +17,7 @@ concurrency: jobs: unit-tests-master: name: unit-tests - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: DOKKU_VERSION: master @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: '3.7.x' + python-version: "3.7.x" - run: make setup @@ -59,7 +59,7 @@ jobs: unit-tests-0_19_0: name: unit-tests-0.19.0 - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: DOKKU_TAG: v0.19.0 @@ -70,7 +70,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: '3.7.x' + python-version: "3.7.x" - run: make setup diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index f6a2882..4a4e6ad 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -10,7 +10,7 @@ on: jobs: tagged-release: name: tagged-release - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Release diff --git a/Vagrantfile b/Vagrantfile index 093340f..4e6545b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -BOX_NAME = ENV["BOX_NAME"] || "bento/ubuntu-22.04" +BOX_NAME = ENV["BOX_NAME"] || "bento/ubuntu-24.04" BOX_MEMORY = ENV["BOX_MEMORY"] || "2048" DOKKU_VERSION = "master" From 6c51ea1fb7f8af304f66aa53b859e70f3603f566 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 17 Apr 2025 20:46:18 -0400 Subject: [PATCH 2/2] fix: use maintained version of python --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c4a571..35cf590 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: "3.7.x" + python-version: "3.13" - run: make setup @@ -70,7 +70,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: "3.7.x" + python-version: "3.13" - run: make setup