Skip to content

Commit 300111c

Browse files
chore(deps): pin dependencies (#772)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 854dd2c commit 300111c

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/build_and_validate.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v6
25-
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4
24+
uses: actions/checkout@v6.0.3
25+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
2626
id: filter
2727
with:
2828
base: main
@@ -36,14 +36,14 @@ jobs:
3636
- '**.go'
3737
- run: echo ${{ steps.filter.outputs.openapi }}
3838
- name: Install Go
39-
uses: actions/setup-go@v6
39+
uses: actions/setup-go@v6.4.0
4040
with:
4141
go-version: 1.26.3
4242
- name: Check Go modules match source code
4343
run: ./scripts/go-mod-check.sh
4444
- name: golangci-lint
4545
if: steps.filter.outputs.go == 'true'
46-
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9
46+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
4747
with:
4848
version: v2.12.2
4949
args: --timeout 2m0s

.github/workflows/generate.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
GOPATH: /home/runner/work/app-services-sdk-go/go
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/setup-go@v6
18+
- uses: actions/setup-go@v6.4.0
1919
with:
2020
go-version: 1.26.3
2121
- name: Checkout
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v6.0.3
2323
- name: Generate API clients
2424
run: |
2525
./scripts/generate.sh
2626
go mod tidy
2727
28-
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8
28+
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
2929
with:
3030
title: "chore(all): re-generate OpenAPI client(s)"
3131
token: "${{ secrets.CI_USER_TOKEN }}"

.github/workflows/generate_errors.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
node-version: [14.x]
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v6.0.3
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v6
19+
uses: actions/setup-node@v6.4.0
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- name: Fetch Errors JSON files
2323
run: ./scripts/errors/fetch-errors.sh
2424
- name: Generate Errors SDK
2525
run: ./scripts/errors/generate-errors.sh
26-
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8
26+
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
2727
with:
2828
title: "fix(all): regenerated Error SDK(s)"
2929
token: "${{ secrets.CI_USER_TOKEN }}"

.github/workflows/push_security_sdk.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- "redhat-developer/app-services-sdk-java"
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v6.0.3
2121

2222
- name: KAS Fleet Manager OpenAPI changed
23-
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4
23+
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1
2424
with:
2525
token: ${{ env.APP_SERVICES_CI_TOKEN }}
2626
repository: ${{ matrix.repo }}

.github/workflows/update_openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ jobs:
2525
DOWNLOAD_URL: ${{ github.event.client_payload.download_url }}
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/setup-go@v6
28+
- uses: actions/setup-go@v6.4.0
2929
with:
3030
go-version: 1.26.3
3131
- name: Checkout
32-
uses: actions/checkout@v6
32+
uses: actions/checkout@v6.0.3
3333
- name: Fetch OpenAPI doc
3434
if: github.event.inputs.url != ''
3535
run: ./scripts/fetch_api.sh ${{ github.event.inputs.url }}
3636
- name: Fetch OpenAPI doc
3737
if: github.event.client_payload.download_url != ''
3838
run: ./scripts/fetch_api.sh ${{ github.event.client_payload.download_url }}
39-
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8
39+
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
4040
with:
4141
title: "chore(openapi): update ${{ env.CLIENT_ID }} OpenAPI document"
4242
token: "${{ secrets.CI_USER_TOKEN }}"

0 commit comments

Comments
 (0)