⬆️ Update Update kairos-io/linting-composite-action action to v0.0.10 #2093
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UKI tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
permissions: read-all | |
concurrency: | |
group: ci-uki-${{ github.head_ref || github.ref }}-${{ github.repository }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: 1 | |
EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} | |
jobs: | |
test-uki: | |
strategy: | |
matrix: | |
include: | |
- flavor: ubuntu | |
flavor_release: 24.04 | |
family: ubuntu | |
base_image: ubuntu:24.04 | |
variant: core | |
- flavor: ubuntu | |
flavor_release: 24.04 | |
family: ubuntu | |
base_image: ubuntu:24.04 | |
variant: standard | |
k3s_version: 1.31.2 # we need to use a matrix like we do in the other pipelines, but adding manually now just to see if this makes it work | |
- flavor: fedora | |
family: rhel | |
flavor_release: 40 | |
base_image: fedora:40 | |
variant: core | |
uses: ./.github/workflows/reusable-uki-test.yaml | |
permissions: | |
id-token: write # OIDC support | |
contents: write | |
security-events: write | |
actions: read | |
attestations: read | |
checks: read | |
deployments: read | |
discussions: read | |
issues: read | |
packages: read | |
pages: read | |
pull-requests: read | |
repository-projects: read | |
statuses: read | |
secrets: inherit | |
with: | |
base_image: ${{ matrix.base_image }} | |
family: ${{ matrix.family }} | |
flavor: ${{ matrix.flavor }} | |
flavor_release: ${{ matrix.flavor_release }} | |
variant: ${{ matrix.variant }} | |
k3s_version: ${{ matrix.k3s_version }} |