Skip to content

Commit fc4bdc0

Browse files
authored
chore: contributor tooling fixes (#737)
1 parent f5c1bb9 commit fc4bdc0

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.17
77
// Append -bullseye or -buster to pin to an OS version.
88
// Use -bullseye variants on local arm64/Apple Silicon.
9-
"VARIANT": "1-1.23-bookworm",
9+
"VARIANT": "1-1.24-bookworm",
1010
// Options
1111
"NODE_VERSION": "lts/*"
1212
}

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Go
2929
uses: actions/setup-go@v4
3030
with:
31-
go-version: "1.23"
31+
go-version: "1.24"
3232

3333
- name: Setup NodeJS
3434
uses: actions/setup-node@v4

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v4
2727
with:
28-
go-version: "1.23"
28+
go-version: "1.24"
2929

3030
- name: Setup NodeJS
3131
uses: actions/setup-node@v4

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v4
2727
with:
28-
go-version: "1.23"
28+
go-version: "1.24"
2929

3030
- name: Install gotestsum
3131
run: go install gotest.tools/gotestsum@latest
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Go
5050
uses: actions/setup-go@v4
5151
with:
52-
go-version: "1.23"
52+
go-version: "1.24"
5353

5454
- name: Create Fake WebUI Sources
5555
run: |

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ __debug_bin
55
cmd/backrest/backrest
66
*.exe
77
.DS_Store
8-
.idea/
8+
.idea/
9+
.pnpm-store/

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "go",
77
"request": "launch",
88
"mode": "debug",
9-
"program": "${workspaceFolder}/backrest.go",
9+
"program": "${workspaceFolder}/cmd/backrest/backrest.go",
1010
"output": "__debug_bin",
1111
"preLaunchTask": "Build Webui"
1212
},

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"label": "npm i",
66
"type": "shell",
7-
"command": "cd webui && npm i"
7+
"command": "cd webui && npx --yes pnpm i"
88
},
99
{
1010
"label": "Parcel",

0 commit comments

Comments
 (0)