Skip to content

Commit 09b7f4a

Browse files
authored
Merge branch 'main' into fix/issue-25543
2 parents bf29c81 + 6d0507a commit 09b7f4a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2043
-980
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout 🛎️
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
persist-credentials: false
2727
fetch-depth: 0

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
go-arch: ["amd64", "arm64"] # drop 32 bit support for now (and maybe forever)
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- uses: actions/setup-go@v6
2525
with:
2626
go-version: "1.25"

.github/workflows/changelog-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# Skip draft PRs and PRs starting with: revert, test, chore, ci, docs, style, build, refactor
1414
if: ${{ !github.event.pull_request.draft && !contains(github.event.pull_request.title, 'revert') && !contains(github.event.pull_request.title, 'test') && !contains(github.event.pull_request.title, 'chore') && !contains(github.event.pull_request.title, 'ci') && !contains(github.event.pull_request.title, 'docs') && !contains(github.event.pull_request.title, 'style') && !contains(github.event.pull_request.title, 'build') && !contains(github.event.pull_request.title, 'refactor') }}
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: mskelton/changelog-reminder-action@v3
1818
with:
1919
message: "@${{ github.actor }} your pull request is missing a changelog!"

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- uses: actions/setup-go@v6
3131
with:
3232
go-version: "1.25"

.github/workflows/dependabot-update-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
app-id: "${{ secrets.APP_ID }}"
2121
private-key: "${{ secrets.APP_PRIVATE_KEY }}"
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
with:
2424
repository: ${{ github.event.pull_request.head.repo.full_name }}
2525
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/dependencies-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: depot-ubuntu-22.04-4
1212
steps:
1313
- name: "Checkout Repository"
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- name: "Setup Go"
1616
uses: actions/setup-go@v6
1717
with:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
build:
3535
runs-on: depot-ubuntu-22.04-4
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
with:
3939
fetch-depth: 0
4040

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: golangci-lint
1515
runs-on: depot-ubuntu-22.04-4
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- uses: actions/setup-go@v6
1919
with:
2020
go-version: "1.25"

.github/workflows/md-link-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
markdown-link-check:
88
runs-on: depot-ubuntu-22.04-4
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- run: cd docs && sh ./pre.sh
1212
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.17
1313
with:

.github/workflows/pr-go-mod-tidy-mocks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: depot-ubuntu-22.04-4
1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Set up Go
2121
uses: actions/setup-go@v6
2222
with:
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: depot-ubuntu-22.04-4
3737
steps:
3838
- name: Check out code
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
- name: Set up Go
4141
uses: actions/setup-go@v6
4242
with:

0 commit comments

Comments
 (0)