Skip to content

Commit 35deb52

Browse files
authored
1 parent 11b2fc4 commit 35deb52

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Dependabot CLI",
3-
"image": "mcr.microsoft.com/devcontainers/go:1.21",
3+
"image": "mcr.microsoft.com/devcontainers/go:1.22",
44
"features": {
55
"ghcr.io/devcontainers/features/docker-in-docker": "latest"
66
},

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.21
18+
go-version: 1.22
1919

2020
- name: Build
2121
run: go build -v ./...
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: 1.21
36+
go-version: 1.22
3737

3838
- name: Run go vet
3939
run: go vet ./...

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- uses: wangyoucao577/[email protected]
2626
with:
27-
goversion: 1.21.0 # needs the patch specified
27+
goversion: 1.22.0 # needs the patch specified
2828
github_token: ${{ secrets.GITHUB_TOKEN }}
2929
goos: ${{ matrix.goos }}
3030
goarch: ${{ matrix.goarch }}

.github/workflows/smoke.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Go
3333
uses: actions/setup-go@v5
3434
with:
35-
go-version: 1.21
35+
go-version: 1.22
3636

3737
# Download the Proxy cache. The job is ideally 100% cached so no real calls are made.
3838
- name: Download cache

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/dependabot/cli
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/MakeNowJust/heredoc v1.0.0

0 commit comments

Comments
 (0)