Skip to content

Commit 2b72850

Browse files
authored
Merge branch 'main' into Update_Disk_Via_Import
2 parents 7d32487 + 5899083 commit 2b72850

38 files changed

+264
-294
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1461,6 +1461,15 @@
14611461
"contributions": [
14621462
"code"
14631463
]
1464+
},
1465+
{
1466+
"login": "maxo99",
1467+
"name": "Max Orr",
1468+
"avatar_url": "https://avatars.githubusercontent.com/u/32850992?v=4",
1469+
"profile": "https://github.com/maxo99",
1470+
"contributions": [
1471+
"doc"
1472+
]
14641473
}
14651474
],
14661475
"contributorsPerLine": 7,

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.0@sha256:5502b0e56fca23feba76dbc5387ba59c593c02ccc2f0f7355871ea9a0852cebe
1+
FROM golang:1.25.1@sha256:d6bdb04c3109d29739c19566092e63b469d4cdf193df206fadf286aa4a549ba6
22

33
ARG GOLANGCI_LINT_VERSION=2.4.0 # renovate: depName=golangci/golangci-lint datasource=github-releases
44

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- .github/workflows/golangci-lint.yml
3232
3333
- name: Setup Go
34-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
34+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
3535
if: ${{ steps.filter.outputs.go == 'true' || steps.filter.outputs.linter == 'true'}}
3636
with:
3737
go-version-file: "go.mod"

.github/workflows/link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}"
2929
with:
30-
args: --base . --verbose --no-progress './**/*.md' './**/*.html' --exclude-path ./CONTRIBUTORS.md --exclude-path ./CHANGELOG.md
30+
args: --config lychee.toml './**/*.md' './**/*.html'
3131

3232
- name: Find Link Checker Issue
3333
id: link-checker-issue

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
repositories: "${{ github.event.repository.name }}"
2222

2323
- name: Stale Issues and Pull Requests
24-
uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
24+
uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10
2525
with:
2626
repo-token: "${{ steps.app-token.outputs.token }}"
2727
days-before-stale: 180

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Setup Go
2929
if: ${{ steps.filter.outputs.go == 'true' }}
30-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
30+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
3131
with:
3232
go-version-file: "go.mod"
3333
cache-dependency-path: "**/*.sum"
@@ -64,7 +64,7 @@ jobs:
6464
- '**/*.go'
6565
6666
- name: Setup Go
67-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
67+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
6868
with:
6969
go-version-file: "go.mod"
7070
cache-dependency-path: "**/*.sum"

.github/workflows/testacc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
ref: ${{ github.event.inputs.ref || github.ref}}
4242

4343
- name: Setup Go
44-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
44+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
4545
with:
4646
go-version-file: "go.mod"
4747
cache-dependency-path: "**/*.sum"

.golangci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ linters:
5757
allow-first-in-block: true
5858
allow-whole-block: false
5959
branch-max-lines: 2
60+
disable:
61+
- decl
62+
- err
6063
exclusions:
6164
generated: lax
6265
presets:

.lycheeignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ ability to merge PRs and respond to issues.
3737
- To cross-compile the provider for all supported platforms:
3838

3939
```sh
40-
make build-all
40+
make release-build
4141
```
4242

4343
The compiled binaries will be placed in the `dist` directory.
4444

45-
A portion of the documentation is generated from the source code. To update the documentation, run:
45+
- A portion of the documentation is generated from the source code. To update the documentation, run:
4646

4747
```sh
4848
make docs

0 commit comments

Comments
 (0)