From 96b3ea97e677c93d3a93b2cf687ff940254e9fd1 Mon Sep 17 00:00:00 2001 From: Harry Gogonis Date: Tue, 24 Feb 2026 11:19:56 -0500 Subject: [PATCH 1/2] SRENEW-3359 | update base tag to v5.8.1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a20281a..18717ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.k8s.io/kustomize/kustomize:v5.0.0 +FROM registry.k8s.io/kustomize/kustomize:v5.8.1 RUN apk add --no-cache \ sed \ From 2855a26a0ee42a89888893c86d071d5845a6085b Mon Sep 17 00:00:00 2001 From: Harry Gogonis Date: Tue, 24 Feb 2026 11:40:05 -0500 Subject: [PATCH 2/2] Update JIRA action to version 4 --- .github/workflows/jira.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/jira.yml diff --git a/.github/workflows/jira.yml b/.github/workflows/jira.yml new file mode 100644 index 0000000..839cd58 --- /dev/null +++ b/.github/workflows/jira.yml @@ -0,0 +1,26 @@ +name: JIRA Connection +on: + pull_request: + types: + - opened + - reopened + - edited + - synchronize +jobs: + enforce-issue: + runs-on: ubuntu-latest + name: JIRA Association + steps: + - name: Check for JIRA ISSUE + id: check + uses: supplypike/jira-pr-link-action@v4 + with: + ignore-author: | + dependabot[bot] + supplypiker + supplypiker-app[bot] + supplypiker-github-app[bot] + project: "[A-Z]{2,10}" + jira-host: ${{ secrets.JIRA_HOST }} + jira-email: ${{ secrets.JIRA_EMAIL }} + jira-api-token: ${{ secrets.JIRA_API_TOKEN }}