Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
npm run test

- name: Analyse code quality
uses: sonarsource/sonarqube-scan-action@1a6d90ebcb0e6a6b1d87e37ba693fe453195ae25 # v5.3.1
uses: sonarsource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 #7.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- development
tags:
- "v*.*.*"
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PARENT_VERSION=2.10.3-node22.21.1
ARG PARENT_VERSION=3.0.3-node22.22.1

FROM defradigital/node:${PARENT_VERSION} AS base
ARG PORT=3000
Expand All @@ -17,7 +17,7 @@ WORKDIR /home/node/app
# Copy the basic directories/files across
# When developing/debugging within a container locally, --chown=root:root should be replaced with --chown=node:node to provide
# required write permissions. SonarQube cloud will raise a security issue if analysing these changes.
COPY --chown=root:root package*.json .
COPY --chown=root:root package*.json ./
COPY --chown=root:root ./index.js .
COPY --chown=root:root ./bin ./bin
COPY --chown=root:root ./client ./client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
This release will migrate FWIS App to ECS

## Tag
The tag for this release is v5.0.1 ([fws-app](https://github.com/DEFRA/fws-app/) respositories)
The tag for this release is 5.0.2 ([fws-app](https://github.com/DEFRA/fws-app/) respositories)



Expand All @@ -16,7 +16,7 @@ Tickets linked to the release in Jira: [https://eaflood.atlassian.net/projects/N

## Instructions

- CCOE WebOps to update FWS_PRD_03_DEPLOY_APPLICATION_1 to use tag v5.0.1
- CCOE WebOps to update FWS_PRD_03_DEPLOY_APPLICATION_1 to use tag 5.0.2

- Execute FWS_PRD_05_FWIS_SMOKE_TESTS

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fws-app",
"version": "5.0.1",
"version": "5.0.2",
"description": "FWS Web App",
"main": "index.js",
"engines": {
Expand Down
Loading