From 10b085ac7eef14cc07fb2941c5160d2ef67f33b6 Mon Sep 17 00:00:00 2001 From: Mark Street Date: Mon, 20 Apr 2026 07:55:53 +0100 Subject: [PATCH] Bump CI --- .github/workflows/ci.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ec7c599..413dac0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,10 +9,10 @@ on: jobs: check_templated_files: name: Ensure templated Dockerfiles are up to date - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Generate templates run: python3 template.py values.yaml @@ -22,12 +22,12 @@ jobs: create_matrix: name: Create Matrix - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: matrix: ${{ steps.create-matrix.outputs.matrix }} steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Create list of changed files run: | @@ -52,7 +52,7 @@ jobs: run_matrix: name: Run Matrix permissions: write-all - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: [check_templated_files, create_matrix] if: ${{ needs.create_matrix.outputs.matrix != '' && needs.create_matrix.outputs.matrix != '{"include":[]}' }} strategy: @@ -60,20 +60,20 @@ jobs: matrix: ${{ fromJson(needs.create_matrix.outputs.matrix) }} steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push to Github registry - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v7 with: # only publish from main branch and don't publish on forks push: ${{ github.ref == 'refs/heads/main' && ! github.event.pull_request.head.repo.fork }}