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
4 changes: 2 additions & 2 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
npm-update:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
contents: write
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 24
cache: npm
- name: Checkout PR
run: gh pr checkout ${{ github.event.pull_request.number }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
version: ['latest', '1.24.0']
os: [ubuntu-24.04, ubuntu-24.04-arm]
version: ['latest', '1.24.7']
steps:
- uses: actions/checkout@v5
- uses: ./
Expand All @@ -28,10 +28,10 @@ jobs:
version: ${{ matrix.version }}
- name: ddev version
run: |
if [[ ${{ matrix.version }} == '1.24.0' ]]; then
test "$(ddev --version)" == 'ddev version v1.24.0'
if [[ ${{ matrix.version }} == '1.24.7' ]]; then
test "$(ddev --version)" == 'ddev version v1.24.7'
else
test "$(ddev --version)" != 'ddev version v1.24.0'
test "$(ddev --version)" != 'ddev version v1.24.7'
fi
- name: ddev stopped
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-main-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
tag:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down