Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ubuntu latest breaks #3750

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/app/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ inputs:
runs:
using: composite
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
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/feature/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ inputs:
runs:
using: composite
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/actions/hotfix/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ inputs:
runs:
using: composite
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/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
Loading