Skip to content

Commit

Permalink
Install dependencies on runner
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandr Demicev <[email protected]>
  • Loading branch information
alexander-demicev committed Dec 5, 2024
1 parent f3c2d7e commit 158230a
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e-short.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-e2e-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test_chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 158230a

Please sign in to comment.