Merge pull request #343 from dokku/update-workflows

chore: bump runs-on image from ubuntu-22.04 to ubuntu-24.04
This commit is contained in:
Jose Diaz-Gonzalez
2025-04-17 21:11:21 -04:00
committed by GitHub
3 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ name: CI
on: on:
pull_request: pull_request:
branches: branches:
- '*' - "*"
push: push:
branches: branches:
- master - master
@@ -17,7 +17,7 @@ concurrency:
jobs: jobs:
unit-tests-master: unit-tests-master:
name: unit-tests name: unit-tests
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
env: env:
DOKKU_VERSION: master DOKKU_VERSION: master
@@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.7.x' python-version: "3.13"
- run: make setup - run: make setup
@@ -59,7 +59,7 @@ jobs:
unit-tests-0_19_0: unit-tests-0_19_0:
name: unit-tests-0.19.0 name: unit-tests-0.19.0
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
env: env:
DOKKU_TAG: v0.19.0 DOKKU_TAG: v0.19.0
@@ -70,7 +70,7 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.7.x' python-version: "3.13"
- run: make setup - run: make setup

View File

@@ -10,7 +10,7 @@ on:
jobs: jobs:
tagged-release: tagged-release:
name: tagged-release name: tagged-release
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Release - name: Release

2
Vagrantfile vendored
View File

@@ -1,7 +1,7 @@
# -*- mode: ruby -*- # -*- mode: ruby -*-
# vi: set ft=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" BOX_MEMORY = ENV["BOX_MEMORY"] || "2048"
DOKKU_VERSION = "master" DOKKU_VERSION = "master"