Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/build_and_validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
id: filter
with:
Expand All @@ -43,7 +43,7 @@ jobs:
run: ./scripts/go-mod-check.sh
- name: golangci-lint
if: steps.filter.outputs.go == 'true'
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
with:
version: v1.64.8
version: v2.10.1
args: --timeout 2m0s
4 changes: 2 additions & 2 deletions .github/workflows/generate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
with:
go-version: 1.26.0
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Generate API clients
run: |
./scripts/generate.sh
go mod tidy

- uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
- uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
with:
title: "chore(all): re-generate OpenAPI client(s)"
token: "${{ secrets.CI_USER_TOKEN }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate_errors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
node-version: [14.x]
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Fetch Errors JSON files
run: ./scripts/errors/fetch-errors.sh
- name: Generate Errors SDK
run: ./scripts/errors/generate-errors.sh
- uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
- uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
with:
title: "fix(all): regenerated Error SDK(s)"
token: "${{ secrets.CI_USER_TOKEN }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_security_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- "redhat-developer/app-services-sdk-java"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: KAS Fleet Manager OpenAPI changed
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4
with:
token: ${{ env.APP_SERVICES_CI_TOKEN }}
repository: ${{ matrix.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
with:
go-version: 1.26.0
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Fetch OpenAPI doc
if: github.event.inputs.url != ''
run: ./scripts/fetch_api.sh ${{ github.event.inputs.url }}
- name: Fetch OpenAPI doc
if: github.event.client_payload.download_url != ''
run: ./scripts/fetch_api.sh ${{ github.event.client_payload.download_url }}
- uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
- uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
with:
title: "chore(openapi): update ${{ env.CLIENT_ID }} OpenAPI document"
token: "${{ secrets.CI_USER_TOKEN }}"
Expand Down
Loading