Skip to content

chore(deps): update docker/setup-buildx-action action to v3.3.0 #27

chore(deps): update docker/setup-buildx-action action to v3.3.0

chore(deps): update docker/setup-buildx-action action to v3.3.0 #27

Workflow file for this run

name: Test UDS Capability
on:
pull_request:
paths-ignore:
- "**.md"
- "docs/**"
- "CODEOWNERS"
permissions:
id-token: write
contents: read
jobs:
test-clean-install:
runs-on: ubuntu-latest
strategy:
matrix:
image: ["ghcr.io/defenseunicorns/oss/uds-k3d-k3s"]
version: ["v1.27.11-k3s1", "v1.28.7-k3s1", "v1.29.2-k3s1"]
# Test the default image as well
include:
- image: "rancher/k3s"
version: "v1.27.4-k3s1"
steps:
- uses: actions/checkout@v4
- name: Setup UDS
if: always()
uses: defenseunicorns/uds-common/.github/actions/[email protected]
with:
username: ${{secrets.IRON_BANK_ROBOT_USERNAME}}
password: ${{secrets.IRON_BANK_ROBOT_PASSWORD}}
- name: Build the custom k3s image
if: ${{matrix.image}} != "rancher/k3s"
run: uds run build-image --set VERSION=${{matrix.version}}
- name: Create and deploy the uds-k3d package
run: uds run --set IMAGE_NAME=${{matrix.image}} --set VERSION=${{matrix.version}}
- name: Validate uds-k3d package
run: uds run validate