Skip to content

Commit

Permalink
Merge pull request #262 from covalenthq/develop
Browse files Browse the repository at this point in the history
Upgrade `bsp-agent` Golang from 1.19 to 1.20 -> 1.22.2
  • Loading branch information
noslav committed Jun 11, 2024
2 parents 336500b + 48ccc27 commit c3bb23d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@ updates:
reviewers:
- "noslav"
- "rogarcia"

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
reviewers:
- "noslav"
- "rogarcia"
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup Go 1.19.x
- name: Setup Go 1.22.2
uses: actions/setup-go@v4
with:
# Semantic version range syntax or exact version of Go
go-version: '1.19.x'
go-version: '1.22.2'
cache-dependency-path: ./go.sum
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build - first phase.
FROM golang:1.19-alpine as builder
FROM golang:1.22-alpine as builder
RUN mkdir /build
WORKDIR /build
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/covalenthq/bsp-agent

go 1.19
go 1.22.2

require (
github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const (
// BspAgentVersionMinor is Minor version component of the current release
BspAgentVersionMinor = 7
// BspAgentVersionPatch is Patch version component of the current release
BspAgentVersionPatch = 1
BspAgentVersionPatch = 2
)

// BspAgentVersion holds the textual version string.
Expand Down

0 comments on commit c3bb23d

Please sign in to comment.