diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 37d3bf13..92a00c67 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,6 +15,10 @@ jobs: runs-on: org-${{ github.repository_owner_id }}-amd64-k8s container: ubuntu:22.04 steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - uses: actions/checkout@v4 - uses: actions/setup-go@v5.1.0 with: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 333429dd..f7a1fac0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -23,6 +23,10 @@ jobs: contents: read security-events: write steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - name: Checkout repository uses: actions/checkout@v4 - name: setupGo diff --git a/.github/workflows/e2e-short.yaml b/.github/workflows/e2e-short.yaml index 34d5c37a..bed7e12c 100644 --- a/.github/workflows/e2e-short.yaml +++ b/.github/workflows/e2e-short.yaml @@ -17,6 +17,10 @@ jobs: runs-on: org-${{ github.repository_owner_id }}-amd64-k8s container: ubuntu:22.04 steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - name: Cleanup space run: | sudo apt-get remove -y '^aspnetcore-.*' || echo "::warning::The command [sudo apt-get remove -y '^aspnetcore-.*'] failed to complete successfully. Proceeding..." diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 82a3645d..4241abab 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -21,6 +21,10 @@ jobs: working-directory: - "" steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - uses: actions/checkout@v4 - uses: actions/setup-go@v5.1.0 with: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 2b34b61b..57a481f8 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,6 +17,10 @@ jobs: runs-on: org-${{ github.repository_owner_id }}-amd64-k8s container: ubuntu:22.04 steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - uses: actions/checkout@v4 - uses: actions/setup-go@v5.1.0 with: diff --git a/.github/workflows/run-e2e-suite.yaml b/.github/workflows/run-e2e-suite.yaml index c3437c4f..6c302b47 100644 --- a/.github/workflows/run-e2e-suite.yaml +++ b/.github/workflows/run-e2e-suite.yaml @@ -59,6 +59,10 @@ jobs: runs-on: org-${{ github.repository_owner_id }}-amd64-k8s container: ubuntu:22.04 steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - name: Install eksctl run: | ARCH=amd64 diff --git a/.github/workflows/test_chart.yaml b/.github/workflows/test_chart.yaml index 7fe1fb2c..056f83df 100644 --- a/.github/workflows/test_chart.yaml +++ b/.github/workflows/test_chart.yaml @@ -23,6 +23,10 @@ jobs: runs-on: org-${{ github.repository_owner_id }}-amd64-k8s container: ubuntu:22.04 steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - name: Checkout uses: actions/checkout@v4 with: diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index d84c5a9e..8d02efa4 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -25,6 +25,10 @@ jobs: runs-on: org-${{ github.repository_owner_id }}-amd64-k8s container: ubuntu:22.04 steps: + - name: Install dependencies + shell: bash + run: | + apt update && apt-get install make -y - name: Docker login uses: docker/login-action@v3 with: