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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
dashboards: ${{ steps.filter.outputs.dashboards }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Paths filter
id: filter
uses: dorny/paths-filter@v4
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -45,7 +45,7 @@ jobs:
version: '3.16.1'

- name: Cache Helm repository data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/helm
key: helm-cache-${{ runner.os }}-${{ hashFiles('charts/**/Chart.yaml') }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install helm-docs
run: |
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
if: needs.changes.outputs.dashboards == 'true'
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -244,7 +244,7 @@ jobs:
go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@latest

- name: Cache Jsonnet dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: dashboards/vendor
key: jsonnet-deps-${{ hashFiles('dashboards/jsonnetfile.lock.json') }}
Expand All @@ -263,7 +263,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout PR branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout gh-pages
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: gh-pages
path: gh-pages
Expand All @@ -137,15 +137,15 @@ jobs:
rsync -a --exclude='.git' gh-pages/ _site/

- name: Setup Pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6
with:
enablement: true

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: _site

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading