Skip to content

Commit

Permalink
Merge d47d383 into f7b1af3
Browse files Browse the repository at this point in the history
  • Loading branch information
fisuda committed Dec 17, 2022
2 parents f7b1af3 + d47d383 commit 4f59f9e
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.19

- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.19

- name: Checkout code
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,5 +1,6 @@
## NGSI Go v0.12.0-next

- Update: Update golang to 1.19.4 (#248)
- Update: Update Node.js dependencies (#247)
- Update: Update Orion to 3.6.0 (#244)
- Fix: Fix gosimple S1001 error (#243)
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder

RUN \
apk update && \
Expand Down
2 changes: 1 addition & 1 deletion e2e/ngsi-test/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder
LABEL stage=ngsi-builder

WORKDIR /opt/ngsi-test/
Expand Down
2 changes: 1 addition & 1 deletion e2e/server/accumulator/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder
LABEL stage=ngsi-builder

WORKDIR /opt/accumulator
Expand Down
2 changes: 1 addition & 1 deletion e2e/server/atcontext/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder
LABEL stage=ngsi-builder

WORKDIR /opt/atcontext/
Expand Down
2 changes: 1 addition & 1 deletion e2e/server/csource/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder
LABEL stage=ngsi-builder

WORKDIR /opt/csource/
Expand Down
2 changes: 1 addition & 1 deletion e2e/server/oauth/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder
LABEL stage=ngsi-builder

WORKDIR /opt/oauth/
Expand Down
2 changes: 1 addition & 1 deletion extras/queryproxy/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder

RUN \
cd / && \
Expand Down
2 changes: 1 addition & 1 deletion extras/registration_proxy/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder

RUN \
cd / && \
Expand Down
2 changes: 1 addition & 1 deletion extras/tokenproxy/Dockerfile
Expand Up @@ -24,7 +24,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

FROM golang:1.17.6-alpine3.15 AS builder
FROM golang:1.19.4-alpine3.17 AS builder

RUN \
cd / && \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,3 +1,3 @@
module github.com/lets-fiware/ngsi-go

go 1.17
go 1.19

0 comments on commit 4f59f9e

Please sign in to comment.