diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 479efa1..874b3a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -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') }} @@ -90,7 +90,7 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -133,7 +133,7 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -178,7 +178,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install helm-docs run: | @@ -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 @@ -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') }} @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e63574..60b70f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -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 @@ -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