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

jobs:
lint:
# ubuntu-latest while arc-dind runners are unavailable during the libvirt
# GitHub-hosted Ubuntu while arc-dind runners are unavailable during the libvirt
# migration. Revert to `arc` once the new k3s cluster has ARC runners up.
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7.0.1

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7.0.0
with:
python-version: "3.12"
python-version: "3.14"

- name: Run pre-commit
uses: pre-commit/action@v3.0.1
16 changes: 8 additions & 8 deletions .github/workflows/opentofu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ${{ inputs.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0

Expand All @@ -61,17 +61,17 @@ jobs:
needs: [test]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7.0.1

- name: Configure AWS credentials for SOPS KMS
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6.2.3
with:
role-to-assume: ${{ inputs.aws-role-to-assume }}
aws-region: ${{ inputs.aws-region }}

- name: Install SSH key
if: ${{ inputs.setup-ssh }}
uses: shimataro/ssh-key-action@v2
uses: shimataro/ssh-key-action@v2.8.1
with:
key: ${{ secrets.SSH_PRIVATE_KEY }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
} > comment-body.md

- name: comment
uses: johanwulf/replace-comment@v1.0.0
uses: johanwulf/replace-comment@v1.0.1
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: '<!-- opentofu-plan -->'
Expand All @@ -144,17 +144,17 @@ jobs:
environment: ${{ inputs.environment }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7.0.1

- name: Configure AWS credentials for SOPS KMS
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6.2.3
with:
role-to-assume: ${{ inputs.aws-role-to-assume }}
aws-region: ${{ inputs.aws-region }}

- name: Install SSH key
if: ${{ inputs.setup-ssh }}
uses: shimataro/ssh-key-action@v2
uses: shimataro/ssh-key-action@v2.8.1
with:
key: ${{ secrets.SSH_PRIVATE_KEY }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ jobs:
|----------|-------------|
| `opentofu.yml` | OpenTofu/Terraform CI/CD with plan comments and apply on merge |

## Container
## Runners

All workflows use `ghcr.io/makeitworkcloud/runner:latest`.
Repository CI runs on `ubuntu-24.04`. The reusable OpenTofu workflow defaults
to the `arc-tf` runner, whose pod uses the `tfroot-runner` image directly. That
image uses Actions Runner `2.336.0`, above the `2.327.1` minimum required by
the workflows' Node 24 actions.

See [images](https://github.com/makeitworkcloud/images) for container source and included tools.

Expand Down
Loading