Skip to content

Commit

Permalink
Merge branch 'release/1.12.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Aug 10, 2022
2 parents 38dc275 + 39e9d79 commit 1b843fd
Show file tree
Hide file tree
Showing 9 changed files with 145 additions and 160 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
cat /tmp/piping_log.txt
docker_test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: docker build -t piping-server .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build_and_push:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
build_and_push:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: git fetch --unshallow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'v*'
jobs:
npm_publish:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.12.6] - 2022-08-10
### Changed
* Update dependencies

### Fixed
* Change the way of setting secure context to avoid an error "curl: (35) error:14004410:SSL routines:CONNECT_CR_SRVR_HELLO:sslv3 alert handshake failure" on client side in some environment

## [1.12.5] - 2022-07-06
### Changed
* Update dependencies
Expand Down Expand Up @@ -442,7 +449,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Docker automated build on Docker Hub
* Support HTTPS

[Unreleased]: https://github.com/nwtgck/piping-server/compare/v1.12.5...HEAD
[Unreleased]: https://github.com/nwtgck/piping-server/compare/v1.12.6...HEAD
[1.12.6]: https://github.com/nwtgck/piping-server/compare/v1.12.5...v1.12.6
[1.12.5]: https://github.com/nwtgck/piping-server/compare/v1.12.4...v1.12.5
[1.12.4]: https://github.com/nwtgck/piping-server/compare/v1.12.3...v1.12.4
[1.12.3]: https://github.com/nwtgck/piping-server/compare/v1.12.2...v1.12.3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.15.1-alpine
FROM node:16.16.0-alpine

LABEL maintainer="Ryo Ota <[email protected]>"

Expand Down
Loading

0 comments on commit 1b843fd

Please sign in to comment.