Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build and Test

# Set environment variables available in all jobs and steps
env:
go_version: "1.23.5"
go_version: "1.24.1"
python_version: "3.9"

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

# Set environment variables available in all jobs and steps
env:
go_version: "1.23.5"
go_version: "1.24.1"
python_version: "3.9"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: GitHub Release

env:
go_version: "1.23.5"
go_version: "1.24.1"
python_version: "3.10"

on:
Expand Down
5 changes: 3 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
".*\\.html$",
".*\\.properties$",
"ci.yml",
"\\.git"
"^workflows/.*",
"^\\.git[\\\\/]"
]
}
],
Expand Down Expand Up @@ -144,5 +145,5 @@
}
]
},
"generated_at": "2025-03-25T15:29:18Z"
"generated_at": "2025-03-28T14:53:09Z"
}
2 changes: 1 addition & 1 deletion Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.5 as client
FROM golang:1.24.1 as client

WORKDIR /client

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Embedded development services HTTP client

[![Go Badge](https://img.shields.io/badge/go-v1.23.5-blue)](https://golang.org/)
[![Go Badge](https://img.shields.io/badge/go-v1.24.1-blue)](https://golang.org/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Go Reference](https://pkg.go.dev/badge/github.com/ARM-software/embedded-development-services-client/client.svg)](https://pkg.go.dev/github.com/ARM-software/embedded-development-services-client/client)
[![Go Report Card](https://goreportcard.com/badge/github.com/ARM-software/embedded-development-services-client)](https://goreportcard.com/report/github.com/ARM-software/embedded-development-services-client)
Expand Down
1 change: 1 addition & 0 deletions changes/20250325094347.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dependency upgrade: golang-1.24.1
6 changes: 2 additions & 4 deletions client/go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
module github.com/ARM-software/embedded-development-services-client/client

go 1.23.0

toolchain go1.23.5
go 1.24

require (
github.com/ARM-software/golang-utils/utils v1.87.0
github.com/ARM-software/golang-utils/utils v1.88.0
github.com/stretchr/testify v1.10.0
)

Expand Down
4 changes: 2 additions & 2 deletions client/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/ARM-software/golang-utils/utils v1.87.0 h1:1UuiwXOL1Dw6jbF0oQlSR0ULhUajFCudCrUaRLUdmz4=
github.com/ARM-software/golang-utils/utils v1.87.0/go.mod h1:skCi9TZXgezYOkTi9YymsAFTbBDOXfl5vK7AAoBdiPQ=
github.com/ARM-software/golang-utils/utils v1.88.0 h1:t82s7LjfCZBT2LEEG0heSHP+T0OA/Pnq4TybCdJsvqM=
github.com/ARM-software/golang-utils/utils v1.88.0/go.mod h1:hbOnHpp3NKGQlSwI8YhIBLH5TrlPnFP3OE0HphMNqVI=
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-faker/faker/v4 v4.6.0 h1:6aOPzNptRiDwD14HuAnEtlTa+D1IfFuEHO8+vEFwjTs=
Expand Down
2 changes: 1 addition & 1 deletion generator/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ARM-software/embedded-development-services-client/generator

go 1.23.0
go 1.24

toolchain go1.24.1

Expand Down