Skip to content

Commit

Permalink
[release-v1.16] Sync Konflux configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
serverless-qe committed Mar 4, 2025
1 parent 9ad1ec8 commit 0aadfa1
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 6 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/dependabot-deps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

name: Dependabot

on:
pull_request:

permissions:
contents: write

jobs:
update-deps:
name: Update deps
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
path: ./src/github.com/${{ github.repository }}
fetch-depth: 0

- name: Setup Golang
uses: openshift-knative/hack/actions/setup-go@main

- name: Install yq
run: |
go install github.com/mikefarah/yq/v3@latest
- name: Generate files
working-directory: ./src/github.com/${{ github.repository }}
run: make generate-release

- name: git push
working-directory: ./src/github.com/${{ github.repository }}
run: |
if ! git diff --exit-code --quiet
then
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "Run make generate-release"
git push
fi
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
value: openshift/ci-operator/knative-images/eventmesh/Dockerfile
- name: build-args
value:
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.23
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/kn-backstage-plugins-eventmesh-116-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: openshift/ci-operator/knative-images/eventmesh/Dockerfile
- name: build-args
value:
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.23
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/kn-backstage-plugins-migrate-116-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
value: openshift/ci-operator/knative-images/migrate/Dockerfile
- name: build-args
value:
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.23
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/kn-backstage-plugins-migrate-116-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: openshift/ci-operator/knative-images/migrate/Dockerfile
- name: build-args
value:
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.23
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
value: openshift/ci-operator/knative-test-images/eventshub/Dockerfile
- name: build-args
value:
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.23
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/kn-backstage-plugins-test-eventshub-116-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: openshift/ci-operator/knative-test-images/eventshub/Dockerfile
- name: build-args
value:
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.23
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime
Expand Down

0 comments on commit 0aadfa1

Please sign in to comment.