Skip to content

Commit

Permalink
Merge pull request #1749 from w3f/bump-deps
Browse files Browse the repository at this point in the history
Bump dependencies and version
  • Loading branch information
Philipp D authored Apr 11, 2022
2 parents 2f89bd1 + d3f1df8 commit f3546d5
Show file tree
Hide file tree
Showing 7 changed files with 5,256 additions and 7,357 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
helmLint:
docker:
- image: web3f/ci-commons:v2.4.16
- image: web3f/ci-commons:v3.0.0
steps:
- checkout
- run:
Expand All @@ -40,7 +40,7 @@ jobs:
buildImage:
docker:
- image: web3f/ci-commons:v2.4.16
- image: web3f/ci-commons:v3.0.0
resource_class: xlarge
steps:
- checkout
Expand All @@ -51,7 +51,7 @@ jobs:
integrationTests:
docker:
- image: web3f/ci-commons:v2.4.16
- image: web3f/ci-commons:v3.0.0
resource_class: xlarge
steps:
- checkout
Expand All @@ -62,7 +62,7 @@ jobs:
publishImage:
docker:
- image: web3f/ci-commons:v2.4.16
- image: web3f/ci-commons:v3.0.0
steps:
- checkout
- setup_remote_docker
Expand All @@ -72,7 +72,7 @@ jobs:
publishChart:
docker:
- image: web3f/ci-commons:v2.4.16
- image: web3f/ci-commons:v3.0.0
steps:
- checkout
- run:
Expand All @@ -81,7 +81,7 @@ jobs:
deploy:
docker:
- image: web3f/ci-commons:v2.4.16
- image: web3f/ci-commons:v3.0.0
steps:
- checkout
- setup_remote_docker
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:15-slim
FROM node:17-slim
ARG MATRIX_TOKEN
WORKDIR /code
COPY . .
RUN ["npm", "i"]
RUN ["npm", "run", "build"]
CMD ["npm", "run", "js:start"]
CMD ["npm", "run", "js:start"]
2 changes: 1 addition & 1 deletion charts/otv-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description: 1K Validators Backend
name: otv-backend
version: v2.6.1
version: v2.6.2
apiVersion: v2
4 changes: 2 additions & 2 deletions helmfile.d/10-otv-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ releases:
namespace: kusama
{{ if eq .Environment.Name "production" }}
chart: w3f/otv-backend
version: v2.6.1
version: v2.6.2
{{ else }}
chart: ../charts/otv-backend
{{ end }}
Expand All @@ -27,7 +27,7 @@ releases:
namespace: polkadot
{{ if eq .Environment.Name "production" }}
chart: w3f/otv-backend
version: v2.6.1
version: v2.6.2
{{ else }}
chart: ../charts/otv-backend
{{ end }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "1k-validators-be",
"version": "2.6.1",
"version": "2.6.2",
"description": "Services for running the Thousand Validator Program.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { startClearAccumulatedOfflineTimeJob, startMonitorJob } from "./cron";

const isCI = process.env.CI;

const version = "v2.6.1";
const version = "v2.6.2";

const catchAndQuit = async (fn: any) => {
try {
Expand Down
Loading

0 comments on commit f3546d5

Please sign in to comment.