Skip to content

Commit

Permalink
CI: Use debian 12 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eifelmicha committed Feb 19, 2025
1 parent db4d4ba commit 915fc25
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
outputs:
container_supported: ${{ steps.get_min_ansible_container_version.outputs.result }}
steps:
Expand All @@ -34,21 +34,21 @@ jobs:

molecule:
name: Molecule for Ansible ${{ matrix.ansible_scenario }} / ${{ matrix.distro }} / Python ${{ matrix.python_version }}
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
needs: lint
if: needs.lint.outputs.container_supported != 'X'
strategy:
fail-fast: false
matrix:
include:
- distro: ubuntu-20.04
- distro: debian-12
ansible_scenario: ansible_current
experimental: false
- distro: ubuntu-20.04
- distro: debian-12
ansible_scenario: ansible_next
experimental: true
- distro: ubuntu-22.04
- distro: debian-12
ansible_scenario: ansible_latest
experimental: true

Expand All @@ -58,10 +58,9 @@ jobs:
distro: ${{ matrix.distro }}
ansible_scenario: ${{ matrix.ansible_scenario }}


release:
name: Release
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: molecule
# https://github.com/actions/runner/issues/491#issuecomment-850884422
if: |
Expand Down

0 comments on commit 915fc25

Please sign in to comment.