Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
headcr4sh committed Jan 29, 2019
1 parent 4ff7a15 commit 674e0a0
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 20 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Node.js runtime has been updated to v10.9.0
- Included Helm binary has been updated to v2.10.0.
- All NPM (dev/runtime) dependencies have been updated to their respective latest versions
- All NPM (dev/runtime) dependencies have been updated to their respective latest
versions

### Changed

Expand All @@ -64,8 +65,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed

- Chart re-deployments are now handled correctly and the `check` action is being triggered
if only the digest of a chart (and not it's version) has been changed
- Chart re-deployments are now handled correctly and the `check` action is being
triggered if only the digest of a chart (and not it's version) has been changed

## [0.1.1] - 2018-01-15

Expand All @@ -77,4 +78,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Added

- First public version. Implementation of the `check` and `in` actions have been done so far.
- First public version. Implementation of the `check` and `in` actions have been
done so far.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10.13.0 as builder
FROM node:11.8.0 as builder
RUN apt-get -y update && apt-get -y install curl gzip tar unzip
ARG HELM_DOWNLOAD_URL="https://storage.googleapis.com/kubernetes-helm/helm-v2.11.0-linux-amd64.tar.gz"
RUN curl -s -j -k -L "${HELM_DOWNLOAD_URL}" > /tmp/helm.tar.gz
Expand All @@ -13,7 +13,7 @@ COPY . /src
WORKDIR /src
RUN npm -s install && npm -s run build && npm -s test && npm -s pack && mv cathive-concourse-chartmuseum-resource-*.tgz /data/cathive-concourse-chartmuseum-resource.tgz

FROM node:10.13.0-alpine
FROM node:11.8.0-alpine
RUN apk add --no-cache gnupg ca-certificates
COPY --from=builder "/data/helm" "/usr/local/bin/helm"
COPY --from=builder "/data/cathive-concourse-chartmuseum-resource.tgz" "/tmp/cathive-concourse-chartmuseum-resource.tgz"
Expand All @@ -27,7 +27,7 @@ ENV PATH="/usr/local/bin:/usr/bin:/bin"
RUN helm init --client-only
LABEL maintainer="Benjamin P. Jung <headcr4sh@gmail.com>" \
version="0.4.3-pre" \
org.concourse-ci.target-version="4.2.1" \
org.concourse-ci.target-version="4.2.2" \
org.concourse-ci.resource-id="chartmuseum" \
org.concourse-ci.resource-name="ChartMuseum package management" \
org.concourse-ci.resource-homepage="https://github.com/cathive/concourse-chartmuseum-resource"
35 changes: 25 additions & 10 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
"main": "./index.js",
"dependencies": {
"node-fetch": "^2.3.0",
"rimraf": "^2.6.2",
"rimraf": "^2.6.3",
"semver": "^5.6.0",
"tmp": "^0.0.33",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/node": "^10.12.0",
"@types/node": "^10.12.19",
"@types/node-fetch": "^2.1.4",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"@types/tmp": "^0.0.33",
"@types/yamljs": "^0.2.30",
"typescript": "^3.1.6"
"typescript": "^3.2.4"
},
"scripts": {
"build": "tsc",
Expand Down

0 comments on commit 674e0a0

Please sign in to comment.