Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
keycloak:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
- name: Use Node.js
uses: actions/setup-node@v4
Expand All @@ -45,7 +45,7 @@ jobs:
]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: "temurin"
Expand All @@ -59,7 +59,7 @@ jobs:
kind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: "temurin"
Expand All @@ -83,7 +83,7 @@ jobs:
minikube:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: "temurin"
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
preset: [ "openshift" ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: "temurin"
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
IMG: ttl.sh/trustify-operator-${{ github.sha }}:2h
BUNDLE_IMG: ttl.sh/trustify-operator-bundle-${{ github.sha }}:2h
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Create operator
# run: DOCKERFILE=Dockerfile.jvm make docker-build docker-push
run: make docker-build docker-push
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
needs: [ identify-app-tag ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
java-version: 21
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
env:
TAG: ${{ needs.identify-app-tag.outputs.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: main
fetch-depth: 0
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
docker create --name extract "ghcr.io/${{ github.repository_owner }}/trustify-operator-bundle:v${{ github.event.inputs.version }}" foo

- name: Checkout community operators
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: k8s-operatorhub/community-operators
path: community-operators
Expand All @@ -185,7 +185,7 @@ jobs:
git diff

- name: Checkout redhat community operators
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: redhat-openshift-ecosystem/community-operators-prod
path: redhat-community-operators
Expand Down
Loading