Skip to content

Commit

Permalink
Merge pull request #143 from bcgov/chore/release
Browse files Browse the repository at this point in the history
Release BCBox v0.5.0
  • Loading branch information
jujaga authored Nov 2, 2023
2 parents 6f20a26 + 643d885 commit 9351975
Show file tree
Hide file tree
Showing 10 changed files with 488 additions and 378 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# These users will be the default owners for everything in the repo.
# Unless a later match takes precedence, the following users will be
# requested for review when someone opens a pull request.
* @jujaga @kamorel @TimCsaky
* @jujaga @kyle1morel @TimCsaky @wilwong89 @jatindersingh93 @norrisng-bc
10 changes: 6 additions & 4 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
node-version:
- '16.x'
- '18.x'
- '20.x'
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -52,14 +53,14 @@ jobs:
env:
CI: true
- name: Save Coverage Results
if: matrix.node-version == '18.x'
if: matrix.node-version == '20.x'
uses: actions/upload-artifact@v3
with:
name: coverage-app
path: ${{ github.workspace }}/app/coverage
retention-days: 1
- name: Monitor Coverage
if: "matrix.node-version == '18.x' && ! github.event.pull_request.head.repo.fork"
if: "matrix.node-version == '20.x' && ! github.event.pull_request.head.repo.fork"
uses: slavcodev/coverage-monitor-action@v1
with:
comment_mode: update
Expand All @@ -84,6 +85,7 @@ jobs:
node-version:
- '16.x'
- '18.x'
- '20.x'
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -115,14 +117,14 @@ jobs:
env:
CI: true
- name: Save Coverage Results
if: matrix.node-version == '18.x'
if: matrix.node-version == '20.x'
uses: actions/upload-artifact@v3
with:
name: coverage-frontend
path: ${{ github.workspace }}/frontend/coverage
retention-days: 1
- name: Monitor Coverage
if: "matrix.node-version == '18.x' && ! github.event.pull_request.head.repo.fork"
if: "matrix.node-version == '20.x' && ! github.event.pull_request.head.repo.fork"
uses: slavcodev/coverage-monitor-action@v1
with:
comment_mode: update
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG APP_ROOT=/opt/app-root/src
ARG BASE_IMAGE=docker.io/node:18.18.2-alpine
ARG BASE_IMAGE=docker.io/node:20.9.0-alpine

#
# Build the frontend
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ At this time, only the latest version of BCBox is supported.

| Version | Supported |
| ------- | ------------------ |
| 0.4.0 | :white_check_mark: |
| < 0.4.x | :x: |
| 0.5.0 | :white_check_mark: |
| < 0.5.x | :x: |

## Reporting a Bug

Expand Down
Loading

0 comments on commit 9351975

Please sign in to comment.