Skip to content

Commit

Permalink
Merge branch 'release/0.16.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 7, 2024
2 parents d771bac + f9195ad commit aaa5f3b
Show file tree
Hide file tree
Showing 11 changed files with 494 additions and 481 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cloudflare-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
statuses: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.0.1
with:
node-version: 16.x
# base: https://github.com/actions/setup-node/issues/214#issuecomment-810829250
Expand All @@ -33,7 +33,7 @@ jobs:
gitHubToken: ${{ secrets.GITHUB_TOKEN }}

- name: Add publish URL as commit status
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
// When "pull_request", context.payload.pull_request?.head.sha is expected SHA.
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,27 @@ jobs:
- e2e_docker_image_fragment: chrome:84.0
e2e_service_worker_disable: false
e2e_block_popup: false
- e2e_docker_image_fragment: firefox:116.0
- e2e_docker_image_fragment: firefox:118.0
e2e_service_worker_disable: false
e2e_block_popup: false
- e2e_docker_image_fragment: firefox:78.0
e2e_service_worker_disable: false
e2e_block_popup: false
- e2e_docker_image_fragment: firefox:116.0
- e2e_docker_image_fragment: firefox:118.0
e2e_service_worker_disable: true
e2e_block_popup: false
- e2e_docker_image_fragment: firefox:78.0
e2e_service_worker_disable: true
e2e_block_popup: false
- e2e_docker_image_fragment: firefox:116.0
- e2e_docker_image_fragment: firefox:118.0
e2e_service_worker_disable: false
e2e_block_popup: true

runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.8.1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.1
with:
node-version: 16.x
cache: 'npm'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.8.1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.1
with:
node-version: 16.x
# base: https://github.com/actions/setup-node/issues/214#issuecomment-810829250
Expand All @@ -23,7 +23,7 @@ jobs:
- run: SITE_URL="https://piping-ui.org" npm run build

- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v2.0
uses: nwtgck/actions-netlify@v2.1
with:
publish-dir: './dist'
production-branch: master
Expand All @@ -43,7 +43,7 @@ jobs:
id: get_netlify_alias
# For branch deploy
- name: Deploy to Netlify (branch)
uses: nwtgck/actions-netlify@v2.0
uses: nwtgck/actions-netlify@v2.1
with:
publish-dir: './dist'
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vue-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
vue_upgrade:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.8.1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.1
with:
node-version: 16.x
- run: npm ci
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]

## [0.16.2] - 2024-01-07
### Changed
- Update dependencies

### Fixed
- Show verification code in viewer and downloader

## [0.16.1] - 2023-08-20
### Fixed
- Not make verification code flicker
Expand Down Expand Up @@ -473,7 +480,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Added
- First release

[Unreleased]: https://github.com/nwtgck/piping-ui-web/compare/v0.16.1...HEAD
[Unreleased]: https://github.com/nwtgck/piping-ui-web/compare/v0.16.2...HEAD
[0.16.2]: https://github.com/nwtgck/piping-ui-web/compare/v0.16.1...v0.16.2
[0.16.1]: https://github.com/nwtgck/piping-ui-web/compare/v0.16.0...v0.16.1
[0.16.0]: https://github.com/nwtgck/piping-ui-web/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/nwtgck/piping-ui-web/compare/v0.14.0...v0.15.0
Expand Down
Loading

0 comments on commit aaa5f3b

Please sign in to comment.