From cc33e97ea58f10041215aded8b207349fbafc11b Mon Sep 17 00:00:00 2001 From: Vivian Rook Date: Tue, 28 May 2024 16:38:26 -0400 Subject: [PATCH 01/30] update chart version on value.yaml change Bug: T365725 --- .github/workflows/update-chart-version.yaml | 46 +++++++++++++++++++++ paws/Chart.yaml | 4 +- 2 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/update-chart-version.yaml diff --git a/.github/workflows/update-chart-version.yaml b/.github/workflows/update-chart-version.yaml new file mode 100644 index 00000000..6fecc807 --- /dev/null +++ b/.github/workflows/update-chart-version.yaml @@ -0,0 +1,46 @@ +--- + +name: update chart version + +'on': + pull_request_target: + +jobs: + update-container-tags: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + + - name: git fetch + run: | + git fetch + - name: git checkout + run: | + git checkout ${{ github.head_ref }} + + # compare to upstream main branch + - name: git add remote + run: | + git remote add toolforgepaws https://github.com/toolforge/paws.git + - name: git remote update + run: | + git remote update + + - name: update values.yaml + run: | + if [[ $(git diff remotes/toolforgepaws/main -- paws/values.yaml) ]]; then + VERSION=$(grep ^version paws/Chart.yaml | perl -ne '$_ =~ /^version: (\d+.\d+.)(\d+)/; $version = $2 + 1; print "$1$version"') + sed -i "s/^version: .*/version: ${VERSION} # patch number managed by github actions/" paws/Chart.yaml + fi + + - uses: EndBug/add-and-commit@v7 + with: + add: 'paws/Chart.yaml' + author_name: Github Action + author_email: auto@github.com + branch: ${{ github.head_ref }} + message: 'auto update of ${{ inputs.imagename }} tag' + pull: --rebase --autostash diff --git a/paws/Chart.yaml b/paws/Chart.yaml index a7b0fbc2..1edfa474 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,8 +3,8 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: "2.12" +version: 3.0.3 # patch number managed by github actions dependencies: - name: jupyterhub - version: "3.3.3" + version: 3.3.3 repository: "https://jupyterhub.github.io/helm-chart" From e80ad2108f803c8d47355f3f58e3da39990df213 Mon Sep 17 00:00:00 2001 From: Vivian Rook Date: Tue, 28 May 2024 16:39:12 -0400 Subject: [PATCH 02/30] test pull_request --- .github/workflows/update-chart-version.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-chart-version.yaml b/.github/workflows/update-chart-version.yaml index 6fecc807..bab94efd 100644 --- a/.github/workflows/update-chart-version.yaml +++ b/.github/workflows/update-chart-version.yaml @@ -3,7 +3,8 @@ name: update chart version 'on': - pull_request_target: + pull_request: + #pull_request_target: jobs: update-container-tags: From 3ee9bb7c7e806e0cac148ed2524830486b31673c Mon Sep 17 00:00:00 2001 From: Vivian Rook Date: Tue, 28 May 2024 16:40:56 -0400 Subject: [PATCH 03/30] 3.0.0 --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 1edfa474..da825832 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.3 # patch number managed by github actions +version: 3.0.0 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 95922518a4b1a30daa508cc1bb32a1be5a4d634e Mon Sep 17 00:00:00 2001 From: Vivian Rook Date: Tue, 28 May 2024 16:41:59 -0400 Subject: [PATCH 04/30] test values --- paws/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/values.yaml b/paws/values.yaml index 46f65dd9..de8c57d1 100644 --- a/paws/values.yaml +++ b/paws/values.yaml @@ -1,7 +1,7 @@ --- # pawsPublicEnabled enables the anonymous viewing service for notebooks -pawsPublicEnabled: true +pawsPublicEnabled: true pawspublic: nbserve: image: From d6e27319d995d4633b49c7c790a0be53b88725d4 Mon Sep 17 00:00:00 2001 From: Vivian Rook Date: Tue, 28 May 2024 16:45:03 -0400 Subject: [PATCH 05/30] test with image build --- images/jobber/Dockerfile | 2 +- paws/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/jobber/Dockerfile b/images/jobber/Dockerfile index 0f8b2da3..26a21b0b 100644 --- a/images/jobber/Dockerfile +++ b/images/jobber/Dockerfile @@ -2,4 +2,4 @@ FROM alpine:3.20.0 RUN apk --no-cache add curl jq -WORKDIR /opt/mediawiki +WORKDIR /opt/mediawiki diff --git a/paws/values.yaml b/paws/values.yaml index de8c57d1..46f65dd9 100644 --- a/paws/values.yaml +++ b/paws/values.yaml @@ -1,7 +1,7 @@ --- # pawsPublicEnabled enables the anonymous viewing service for notebooks -pawsPublicEnabled: true +pawsPublicEnabled: true pawspublic: nbserve: image: From de76394853e77421666f57865602ad025aefca2d Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:45:46 +0000 Subject: [PATCH 06/30] auto update of tag --- paws/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/values.yaml b/paws/values.yaml index 46f65dd9..48f0089e 100644 --- a/paws/values.yaml +++ b/paws/values.yaml @@ -316,6 +316,6 @@ localdev: enabled: true image: name: quay.io/wikimedia-paws-prod/jobber - tag: pr-420 # jobber tag managed by github actions + tag: pr-424 # jobber tag managed by github actions # mediawikiHacks.image.template safely defines image:tag name in yaml template: "{{ .Values.localdev.image.name}}:{{.Values.localdev.image.tag }}" From 515034dff149d9af9fe9fc9b8087e634c73e1b3d Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:46:00 +0000 Subject: [PATCH 07/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index da825832..e70e2fda 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.0 # patch number managed by github actions +version: 3.0.1 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 99f39f733bb928d577b7bb1ed06d08d5540bbf5e Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:46:12 +0000 Subject: [PATCH 08/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index e70e2fda..03d6783c 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.1 # patch number managed by github actions +version: 3.0.2 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 579e0a25817a61a2643549b5651f5693667585cf Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:46:27 +0000 Subject: [PATCH 09/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 03d6783c..1edfa474 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.2 # patch number managed by github actions +version: 3.0.3 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From a72390ab14bebc2eae8d2c47f612272c463568c7 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:46:44 +0000 Subject: [PATCH 10/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 1edfa474..1b60df34 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.3 # patch number managed by github actions +version: 3.0.4 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From cf054adbc6086524f426addb47e953cac6063344 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:46:57 +0000 Subject: [PATCH 11/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 1b60df34..014d59c0 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.4 # patch number managed by github actions +version: 3.0.5 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From e5be8d5835f7fa958e90b0af301be173e5c418ac Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:47:10 +0000 Subject: [PATCH 12/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 014d59c0..3c688b69 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.5 # patch number managed by github actions +version: 3.0.6 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From b86bb7c790b921f5c6d101bc9af991d47e7218fb Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:47:24 +0000 Subject: [PATCH 13/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 3c688b69..432ba211 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.6 # patch number managed by github actions +version: 3.0.7 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 7ec2d9b9b3eb79552aecbe8755d27b0293a9a748 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:47:37 +0000 Subject: [PATCH 14/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 432ba211..003119c2 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.7 # patch number managed by github actions +version: 3.0.8 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 5ebee290a97098591964e681dadd47cca56f33f9 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:47:50 +0000 Subject: [PATCH 15/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 003119c2..43f90c0d 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.8 # patch number managed by github actions +version: 3.0.9 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 0371dbdb62b9de904d4c53eb9d4b8f7e38c732b4 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:48:04 +0000 Subject: [PATCH 16/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 43f90c0d..80d4bda9 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.9 # patch number managed by github actions +version: 3.0.10 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 8fead5384a4bb945d57d53fb242b1a3db074572b Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:48:18 +0000 Subject: [PATCH 17/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 80d4bda9..1bd4401f 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.10 # patch number managed by github actions +version: 3.0.11 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 3f80df3cb88befb50a54c46d4713d9753ad6964f Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:48:33 +0000 Subject: [PATCH 18/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 1bd4401f..29e68eca 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.11 # patch number managed by github actions +version: 3.0.12 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 7018b361e976aea94cf95169e13f769835ac7aa5 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:48:50 +0000 Subject: [PATCH 19/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 29e68eca..b0c0b83a 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.12 # patch number managed by github actions +version: 3.0.13 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From cbced26a46dc16f5d9e766d07da96b16339b6bd3 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:49:04 +0000 Subject: [PATCH 20/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index b0c0b83a..4adf155f 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.13 # patch number managed by github actions +version: 3.0.14 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 7832d843fea007b0022dbc1d3c0c058d7f6588ff Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:49:18 +0000 Subject: [PATCH 21/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 4adf155f..d180c7eb 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.14 # patch number managed by github actions +version: 3.0.15 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From a56ae87b4a6e78e38a91dbb222e9362d85680dc0 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:49:33 +0000 Subject: [PATCH 22/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index d180c7eb..5a2b51a3 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.15 # patch number managed by github actions +version: 3.0.16 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From c510d354ac98e144ea15f58e09754bc136fc30a3 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:49:50 +0000 Subject: [PATCH 23/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 5a2b51a3..3eca5610 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.16 # patch number managed by github actions +version: 3.0.17 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 7e0d836fbd73f4182ed31aff40cfbff29efaf2fa Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:50:03 +0000 Subject: [PATCH 24/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 3eca5610..2a358e3f 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.17 # patch number managed by github actions +version: 3.0.18 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 73606ecaafdd75a446cd371b47d5d62296122eab Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:50:16 +0000 Subject: [PATCH 25/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 2a358e3f..9269a505 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.18 # patch number managed by github actions +version: 3.0.19 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From 9bc61fdfb66c2473a83cc0fef85f6119fb7f71cc Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:50:33 +0000 Subject: [PATCH 26/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 9269a505..3e710457 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.19 # patch number managed by github actions +version: 3.0.20 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From bba5a102cc6ea9caf01b881d21be679055a93260 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:50:51 +0000 Subject: [PATCH 27/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 3e710457..b04ff430 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.20 # patch number managed by github actions +version: 3.0.21 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From e412b4734ec891b4a9d64fb3a8b99da53176ba7f Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:51:06 +0000 Subject: [PATCH 28/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index b04ff430..64fef6d8 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.21 # patch number managed by github actions +version: 3.0.22 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From b472ca5a9242d120c9ab1716f616732869b88cbd Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:51:22 +0000 Subject: [PATCH 29/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index 64fef6d8..d5c6090a 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.22 # patch number managed by github actions +version: 3.0.23 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3 From e0369e866e36c8d89d3cf1803d6401104c8275c8 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 28 May 2024 20:51:36 +0000 Subject: [PATCH 30/30] auto update of tag --- paws/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paws/Chart.yaml b/paws/Chart.yaml index d5c6090a..b4609051 100644 --- a/paws/Chart.yaml +++ b/paws/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 description: A Helm chart for PAWS name: paws -version: 3.0.23 # patch number managed by github actions +version: 3.0.24 # patch number managed by github actions dependencies: - name: jupyterhub version: 3.3.3