diff --git a/.github/actions/dev-env-setup/action.yml b/.github/actions/dev-env-setup/action.yml index 73963bbb1f..bc3ebe844f 100644 --- a/.github/actions/dev-env-setup/action.yml +++ b/.github/actions/dev-env-setup/action.yml @@ -7,7 +7,7 @@ runs: uses: asdf-vm/actions/setup@v1 - 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 libsqlite3-dev shell: bash - name: set perl env variables shell: bash @@ -23,7 +23,7 @@ runs: with: path: | ~/.asdf - key: ${{ runner.os }}-asdf-cache-${{ hashFiles('.tool-versions') }} + key: ${{ runner.os }}-asdf-cache-${{ hashFiles('.tool-versions') }}-v1 - uses: actions/cache@v3 id: perl-cache with: diff --git a/.github/workflows/lint-chart.yml b/.github/workflows/lint-chart.yml index 7bb6223f85..8f13af07c4 100644 --- a/.github/workflows/lint-chart.yml +++ b/.github/workflows/lint-chart.yml @@ -10,6 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install oc + uses: redhat-actions/oc-installer@v1 + with: + oc_version: "4.6" - name: Authenticate to OpenShift Linter namespace uses: redhat-actions/oc-login@v1 with: diff --git a/.tool-versions b/.tool-versions index f3e6fa0ca5..b2c7fcd780 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,5 +1,5 @@ nodejs 20.14.0 yarn 1.22.22 -postgres 14.0 -python 3.9.19 +postgres 16.0 +python 3.11.0 golang 1.22.0 diff --git a/Makefile b/Makefile index 4462536cd4..1f1bbe54e6 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ SQITCH_VERSION=${word 3,${shell ${SQITCH} --version}} SQITCH_MIN_VERSION=1.1.0 DB_NAME=cif PG_PROVE=pg_prove -h localhost -PGTAP_VERSION=1.2.0 +PGTAP_VERSION=1.3.3 help: ## Show this help. @sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST) diff --git a/chart/cas-cif/templates/hpa.yaml b/chart/cas-cif/templates/hpa.yaml index ac1c66f549..a689c05785 100644 --- a/chart/cas-cif/templates/hpa.yaml +++ b/chart/cas-cif/templates/hpa.yaml @@ -1,5 +1,5 @@ {{- if .Values.autoscaling.enabled }} -apiVersion: autoscaling/v2beta1 +apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: {{ include "cas-cif.fullname" . }} diff --git a/requirements.txt b/requirements.txt index 517530a06b..6380dfb9ca 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -pre-commit==2.19.0 +setuptools==75.8.0 +pre-commit==3.8.0 gitlint==0.17.0