Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

immutable version update, v2.0.9 #192

Merged
merged 3 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
uses: zowe-actions/shared-actions/prepare-workflow@main

- name: '[Prep 5] Setup Node'
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16

Expand Down
13 changes: 7 additions & 6 deletions container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ FROM zowe-docker-release.jfrog.io/ompzowe/base-node:${ZOWE_BASE_IMAGE} AS builde
##################################
# labels
LABEL name="USS Explorer" \
maintainer="jack-tiefeng.jia@ibm.com" \
vendor="Zowe" \
version="0.0.0" \
release="0" \
summary="IBM z/OS Unix Files UI service" \
description="This Zowe UI component can display unix files on z/OS"
maintainer="jack-tiefeng.jia@ibm.com" \
vendor="Zowe" \
version="0.0.0" \
release="0" \
summary="IBM z/OS Unix Files UI service" \
description="This Zowe UI component can display unix files on z/OS"

##################################
# switch context
Expand All @@ -37,6 +37,7 @@ COPY --chown=zowe:zowe component .
# build component
# pretty same as .pax/prepare-workspace.sh. any way we can merge?
RUN npm ci --no-audit --ignore-scripts \
&& npm install -g npm@7.24.2 \
&& npm run prod \
&& mkdir -p final/web \
&& cp README.md final \
Expand Down
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ id: org.zowe.explorer-uss
# Component version is defined in gradle.properties for Gradle project
# Human readable component name
title: USS Explorer
version: 2.0.7
version: 2.0.9
# Human readable component description
description: IBM z/OS Unix Files UI service
license: EPL-2.0
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "explorer-uss",
"version": "2.0.8",
"version": "2.0.9",
"types": "module",
"directories": {
"test": "tests"
Expand All @@ -9,7 +9,7 @@
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"babel-polyfill": "6.16.0",
"immutable": "3.8.1",
"immutable": "3.8.2",
"interweave": "8.0.1",
"lowlight": "2.4.0",
"orion-editor-component": "0.0.14",
Expand Down
Loading