Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Bump golang from 1.16.7-alpine to 1.17.0-alpine (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 26, 2021
1 parent cd2682d commit 0c17d6c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16.7
go-version: 1.17.0

- name: Check out code
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16.7
go-version: 1.17

- name: Check out code
uses: actions/checkout@v2
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16.7
go-version: 1.17

- name: Check out code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog][keepachangelog] and this project adher

### Changed

- Go version updated from `1.16.3` up to `1.16.7`
- Go version updated from `1.16.3` up to `1.17.0`

## v4.3.0

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.2

# Image page: <https://hub.docker.com/_/golang>
FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.16.7-alpine as builder
FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.17.0-alpine as builder

# can be passed with any prefix (like `v1.2.3@GITHASH`)
# e.g.: `docker build --build-arg "APP_VERSION=v1.2.3@GITHASH" .`
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ volumes:

services:
app: &app-service
image: golang:1.16.7-buster # Image page: <https://hub.docker.com/_/golang>
image: golang:1.17.0-buster # Image page: <https://hub.docker.com/_/golang>
working_dir: /src
environment:
HOME: /tmp
Expand Down
6 changes: 3 additions & 3 deletions test/postman/default.postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,8 @@
" pm.response.to.have.status(200);",
"});",
"",
"pm.test('Content-Type header is application/xml', () => {",
" pm.expect(pm.response.headers.get('Content-Type')).to.contains('application/xml');",
"pm.test('Content-Type header is contains xml', () => {",
" pm.expect(pm.response.headers.get('Content-Type')).to.contains('xml');",
"});"
],
"type": "text/javascript"
Expand All @@ -382,4 +382,4 @@
]
}
]
}
}

0 comments on commit 0c17d6c

Please sign in to comment.