Skip to content

Commit

Permalink
chore: updated the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Swati Rawal committed Dec 1, 2023
1 parent 9e2cca4 commit 10b5ad4
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 11 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/release-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Release updated

on:
push:
branches:
- swati/updates

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Login to Github Packages
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# - uses: codfish/semantic-release-action@master
# id: semantic
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

# - name: Build docker merkle-tree image
# run: docker build ./merkle-tree

# - run: echo ${{ steps.semantic.outputs.release-version }}

- name: Build and push UI docker image
uses: docker/build-push-action@v2
with:
context: ./merkle-tree
build-args: |
GPR_TOKEN=${{ secrets.GPR_TOKEN }}
tags: |
ghcr.io/eyblockchain/timber-multicontract:latest
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
push: true
22 changes: 11 additions & 11 deletions merkle-tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,32 @@
"Michael Connor <[email protected]>"
],
"dependencies": {
"axios": "^0.21.1",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express": "^4.17.3",
"express-promise-router": "^3.0.3",
"request": "^2.88.0",
"request": "^2.88.2",
"cors": "^2.8.5",
"config": "^3.2.2",
"config": "^3.3.1",
"big-integer": "^1.6.48",
"web3": "^1.3.0",
"mongoose": "^5.7.5",
"winston": "^3.1.0",
"web3": "4.2.1",
"mongoose": "^5.13.20",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^3.4.1",
"safe-buffer": "^5.1.2",
"solc": "0.5.8",
"solc": "0.8.23",
"fs-extra": "^8.1.0",
"hex-to-binary": "^1.0.1",
"keccak": "^2.1.0",
"jsonfile": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/core": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"nodemon": "^1.19.4",
"nodemon": "^3.0.1",
"mocha": "^6.2.2"
}
}

0 comments on commit 10b5ad4

Please sign in to comment.