Skip to content

Commit 549e15c

Browse files
authored
Merge branch 'master' into gotty_url_override
2 parents 6de4e3a + a38ba4a commit 549e15c

File tree

108 files changed

+7462
-3795
lines changed

Some content is hidden

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

108 files changed

+7462
-3795
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
# Checkout should always be before setup-go to ensure caching is working
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 1
1919
- name: Install Go
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 1
4141
- name: Build image in Docker

.github/workflows/codeql-analysis.yml

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

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
# We must fetch at least the immediate parents so that if this is
4141
# a pull request then we can checkout the head.

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# Checkout should always be before setup-go to ensure caching is working
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 2
1919
- uses: actions/setup-go@v6

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
environment: actions
1313
steps:
1414
- name: Check out the release tag
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
ref: ${{ github.event.release.tag_name }}
1818
- name: Verify release commit
19-
run: | # Commit hash to compare with the commit returned by actions/checkout@v5 - Tag to compare with the latest release
19+
run: | # Commit hash to compare with the commit returned by actions/checkout@v6 - Tag to compare with the latest release
2020
echo "Checked out commit: $(git rev-parse HEAD)"
2121
echo "Expected tag: ${{ github.event.release.tag_name }}"
2222
- name: prepare temporary folder for build

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
# Checkout should always be before setup-go to ensure caching is working
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-go@v6
1717
with:
1818
go-version: stable
@@ -26,7 +26,7 @@ jobs:
2626
markdown-link-check:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.16
3131
with:
3232
use-quiet-mode: 'yes'

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
- name: Labeler
1515
uses: actions/labeler@v6
1616
with:

.github/workflows/lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Github Actions lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Check workflow files
1717
uses: docker://rhysd/actionlint:latest
1818
with:
@@ -22,17 +22,17 @@ jobs:
2222
name: dockerfile-lint
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: dockerfile-lint
2727
run: docker build --check .
2828

2929
golangci:
3030
name: golangci-lint
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: golangci-lint
35-
uses: golangci/golangci-lint-action@v8
35+
uses: golangci/golangci-lint-action@v9
3636
with:
3737
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
3838
version: latest
@@ -43,8 +43,8 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Checkout Actions Repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v6
4747
- name: Spell Check Repo
48-
uses: crate-ci/typos@v1.39.0
48+
uses: crate-ci/typos@v1.40.0
4949
env:
5050
CLICOLOR: 1

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
# Checkout should always be before setup-go to ensure caching is working
5656
- name: Checkout
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858
- name: Install Go
5959
uses: actions/setup-go@v6
6060
with:
@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797
# Checkout should always be before setup-go to ensure caching is working
9898
- name: Checkout
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v6
100100
- name: Install Go
101101
uses: actions/setup-go@v6
102102
with:

.github/workflows/purge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checkout should always be before setup-go to ensure caching is working
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Install Go
1717
uses: actions/setup-go@v6
1818
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818

@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
version: 6.0.2
5353
- name: Checkout
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
fetch-depth: 1
5757
- name: Build

0 commit comments

Comments
 (0)