Skip to content
Open
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
46 changes: 23 additions & 23 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -81,7 +81,7 @@ jobs:

- name: Cache Go tool binaries
id: go-tools-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/go/bin
key: go-tools-${{ runner.os }}-${{ env.GOLANGCI_LINT_VERSION }}-${{ env.GOIMPORTS_VERSION }}-${{ env.ADDLICENSE_VERSION }}
Expand All @@ -91,7 +91,7 @@ jobs:
run: make install-go-tools

- name: Cache golangci-lint analysis
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/golangci-lint
key: golangci-lint-${{ runner.os }}-${{ hashFiles('**/*.go', 'go.sum') }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -156,7 +156,7 @@ jobs:
run: make test-coverage

- name: Upload unit test coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
files: ./coverage_unit.out
flags: unit
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -224,13 +224,13 @@ jobs:
go-${{ runner.os }}-

- name: Set up Helm
uses: azure/setup-helm@v4
uses: azure/setup-helm@v5
with:
version: v3.16.0

- name: Cache Go tool binaries
id: go-tools-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/go/bin
key: go-tools-${{ runner.os }}-${{ env.GOLANGCI_LINT_VERSION }}-${{ env.GOIMPORTS_VERSION }}-${{ env.ADDLICENSE_VERSION }}
Expand All @@ -241,7 +241,7 @@ jobs:

- name: Cache Helm plugins
id: helm-plugins-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.local/share/helm/plugins
key: helm-plugins-${{ runner.os }}-${{ env.HELM_UNITTEST_VERSION }}
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -344,7 +344,7 @@ jobs:
run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash

- name: Install Helm
uses: azure/setup-helm@v4
uses: azure/setup-helm@v5
with:
version: v3.16.0

Expand All @@ -356,7 +356,7 @@ jobs:

- name: Upload e2e test coverage to Codecov
if: always()
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
files: ./coverage_e2e.out
flags: e2e
Expand All @@ -381,10 +381,10 @@ jobs:
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build (no push)
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
push: false
Expand All @@ -407,21 +407,21 @@ jobs:
uses: actions/checkout@v6

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -432,7 +432,7 @@ jobs:
type=sha,prefix=sha-,format=short

- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
platforms: linux/amd64
Expand Down Expand Up @@ -461,7 +461,7 @@ jobs:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v4
uses: azure/setup-helm@v5
with:
version: v3.16.0

Expand Down Expand Up @@ -516,12 +516,12 @@ jobs:
tags: tag:ci

- name: Set up Helm
uses: azure/setup-helm@v4
uses: azure/setup-helm@v5
with:
version: v3.16.0

- name: Setup kubectl
uses: azure/setup-kubectl@v4
uses: azure/setup-kubectl@v5
with:
version: 'latest'

Expand Down Expand Up @@ -657,7 +657,7 @@ jobs:
fi

- name: Create Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
name: Release ${{ github.ref_name }}
body: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6

- name: Build with Jekyll
working-directory: docs
Expand All @@ -58,7 +58,7 @@ jobs:
JEKYLL_ENV: production

- name: Upload artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5
with:
path: docs/_site

Expand All @@ -71,4 +71,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading