Skip to content

Commit

Permalink
fix: ubuntu latest breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
RRanath committed Dec 17, 2024
1 parent 829e007 commit 75a0075
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/dev-env-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
uses: asdf-vm/actions/setup@v2
- uses: shogo82148/actions-setup-perl@v1
- name: install pg perl library
run: sudo apt-get install -y libpq-dev libdbd-pg-perl
run: sudo apt-get install -y libpq-dev libdbd-pg-perl libreadline-dev uuid-dev
shell: bash
- name: set perl env variables
shell: bash
Expand Down
4 changes: 4 additions & 0 deletions .github/actions/s3-backup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ runs:
echo "ACCESS_KEY_ID=$access_key_id" >> $GITHUB_ENV
echo "SECRET_ACCESS_KEY=$secret_access_key" >> $GITHUB_ENV
shell: bash
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: deploy-secret
uses: redhat-actions/oc-login@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/clean-dev-env-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate with OpenShift
uses: redhat-actions/oc-login@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/clean-feature-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate with OpenShift
uses: redhat-actions/oc-login@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy_feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate with OpenShift
uses: redhat-actions/oc-login@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy_tools_chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate, set context and run deploy script
uses: redhat-actions/oc-login@v1
with:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/refresh-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
environment:
name: development
steps:
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate, set context and run deploy script
uses: redhat-actions/oc-login@v1
with:
Expand All @@ -30,6 +34,10 @@ jobs:
environment:
name: test
steps:
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate, set context and run deploy script
uses: redhat-actions/oc-login@v1
with:
Expand All @@ -46,6 +54,10 @@ jobs:
environment:
name: production
steps:
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate, set context and run deploy script
uses: redhat-actions/oc-login@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OpenShift CLI (oc)
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: latest
- name: Authenticate to OpenShift Linter namespace
uses: redhat-actions/oc-login@v1
with:
Expand Down

0 comments on commit 75a0075

Please sign in to comment.