Skip to content

Commit

Permalink
Merge pull request #82 from mean-org/update-dependencies
Browse files Browse the repository at this point in the history
Update project dependencies
  • Loading branch information
MexicanSparker authored Aug 5, 2024
2 parents f7e84f1 + 0425141 commit 55bb382
Show file tree
Hide file tree
Showing 5 changed files with 123 additions and 302 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ on:
tags:
- "v*"
env:
NODE_VERSION: 16
NODE_VERSION: 20

# Automatically create a GitHub Release, with release details specified (the relevant commits)
jobs:
release:
name: "Release & Publish"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
cache: 'yarn'
Expand All @@ -25,7 +25,7 @@ jobs:
run: yarn install && yarn build

- name: Meandao Release & Publish Toolkit
uses: mean-dao/npm-publish-toolkit@v10
uses: mean-dao/npm-publish-toolkit@v17.1
with:
access: public
npm_token: ${{ secrets.NPM_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Nodejs
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: 'yarn'

- name: Install
Expand Down
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mean-dao/mean-multisig-apps",
"version": "1.3.23",
"version": "1.3.24",
"description": "Mean Multisig applications repository",
"main": "lib/index.js",
"repository": "https://github.com/supermean-org/supersafe-apps.git",
Expand All @@ -27,7 +27,7 @@
"@coral-xyz/anchor": "^0.26.0",
"@coral-xyz/anchor-cli": "^0.26.0",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "1.36.0",
"@solana/web3.js": "1.95.2",
"cross-fetch": "^3.1.5"
},
"devDependencies": {
Expand All @@ -41,5 +41,12 @@
"ts-jest": "^28.0.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"resolutions": {
"@solana/web3.js": "1.95.2",
"ws": "8.17.1"
},
"overrides": {
"ws": "8.17.1"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 16",
"display": "Node 20",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "ESNext"],
"outDir": "./lib",
Expand Down
Loading

0 comments on commit 55bb382

Please sign in to comment.