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

Update project dependencies #82

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
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