chore(deps): update githubactions to v1 - autoclosed #146
Workflow file for this run
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: 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: ["rancher/k3s"] | |
version: ["v1.29.8-k3s1", "v1.30.4-k3s1", "v1.31.0-k3s1"] | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup UDS | |
if: always() | |
uses: defenseunicorns/uds-common/.github/actions/setup@5a59ac893e45f6844d6b82eebebda31cf7da8600 # v1.2.1 | |
with: | |
username: ${{secrets.IRON_BANK_ROBOT_USERNAME}} | |
password: ${{secrets.IRON_BANK_ROBOT_PASSWORD}} | |
# Step is not currently being used, could be uncommented if custom image support is needed in the future | |
# - name: Build the custom k3s image | |
# if: ${{matrix.image}} != "rancher/k3s" | |
# run: uds run build-image --set VERSION=${{matrix.version}} --no-progress | |
- name: Create and deploy the uds-k3d package | |
run: uds run --set IMAGE_NAME=${{matrix.image}} --set VERSION=${{matrix.version}} --no-progress | |
- name: Validate uds-k3d package | |
run: uds run validate --no-progress |