diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index ae36f0015..2be3e85d6 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -15,7 +15,7 @@ jobs: - name: Free disk space uses: jlumbroso/free-disk-space@main - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v5 with: diff --git a/.github/workflows/chart-testing.yml b/.github/workflows/chart-testing.yml index a826c57cc..3a8c6fff4 100644 --- a/.github/workflows/chart-testing.yml +++ b/.github/workflows/chart-testing.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Helm @@ -25,7 +25,7 @@ jobs: with: python-version: 3.8 - name: Set up chart-testing - uses: helm/chart-testing-action@v2.7.0 + uses: helm/chart-testing-action@v2.8.0 - name: Run chart-testing (list-changed) id: list-changed run: | @@ -36,7 +36,7 @@ jobs: - name: Run chart-testing (lint) run: ct lint --config .ct.yaml --target-branch ${{ github.event.repository.default_branch }} - name: Create kind cluster - uses: helm/kind-action@v1.12.0 + uses: helm/kind-action@v1.13.0 if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) run: ct install --config .ct.yaml --target-branch ${{ github.event.repository.default_branch }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4097b0108..abc073bd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Go uses: actions/setup-go@v6 with: @@ -25,7 +25,7 @@ jobs: sudo tar -C /usr/local -xzf ${FILENAME} sudo ldconfig /usr/local/lib - name: Run golangci-lint - uses: golangci/golangci-lint-action@v8 + uses: golangci/golangci-lint-action@v9 with: version: v2.5.0 args: --timeout 10m @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Lint OpenAPI specs @@ -52,7 +52,7 @@ jobs: options: --user root steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run ah lint working-directory: ./charts/artifact-hub run: ah lint @@ -66,7 +66,7 @@ jobs: options: --user root steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run CloMonitor linter run: clomonitor-linter --path . --url https://github.com/artifacthub/hub @@ -86,7 +86,7 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Apply database migrations working-directory: ./database/migrations run: TERN_CONF=../../../.github/workflows/tern.conf PGPORT=${{ job.services.postgres.ports[5432] }} ./migrate.sh @@ -100,7 +100,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Go uses: actions/setup-go@v6 with: @@ -127,7 +127,7 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache node modules uses: actions/cache@v4 with: @@ -154,7 +154,7 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache node modules uses: actions/cache@v4 with: @@ -179,7 +179,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Go uses: actions/setup-go@v6 with: @@ -213,7 +213,7 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache node modules uses: actions/cache@v4 with: @@ -234,7 +234,7 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache node modules uses: actions/cache@v4 with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 90956a767..3ca4c064b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -19,13 +19,13 @@ jobs: language: ["go", "javascript"] steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} config-file: ./.github/codeql/codeql-config.yml - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index 313305a72..1b9ae9e3c 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -11,7 +11,7 @@ jobs: fossa-scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: fossas/fossa-action@main with: api-key: ${{secrets.FOSSA_API_KEY}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8662a43b5..5acb04d45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Free disk space uses: jlumbroso/free-disk-space@main - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6 with: @@ -49,7 +49,7 @@ jobs: - name: Set up Helm uses: azure/setup-helm@v4 - name: Checkout Helm charts repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: artifacthub/helm-charts path: helm-charts