Skip to content

Commit

Permalink
Update codeowners & git/elm dependencies (#81)
Browse files Browse the repository at this point in the history
* Update codeownders for palisade.

* Update node versions in build ymls

* It looks like the pr comment action has been deprecated as of 2022. Removing from build.yml.

* Looks like there are issues with webpack’s crypto library on node 18, downgrading to 16.

* Update date format dependency

* Update the elm visualization dependencies to remove invalid dateformat package.

* Small update to infura ipfs gateway host.
  • Loading branch information
torreyatcitty authored Jun 13, 2024
1 parent ebc4e92 commit 27ee82d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @hayesgm @torreyatcitty @alexandfox @alysiawu @banky
* @torreyatcitty @alexandfox
12 changes: 2 additions & 10 deletions .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '15.x'
node-version: '16'

- name: Cache Node Modules
uses: actions/cache@v2
Expand Down Expand Up @@ -85,11 +85,3 @@ jobs:
with:
name: .release
path: .release

- name: Add Deploy Comment
uses: machine-learning-apps/pr-comment@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: .release-notes
if: ${{ github.event_name == 'pull_request' }}
4 changes: 2 additions & 2 deletions .github/workflows/release-hash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '15.x'
node-version: '16'

- name: Install Release Dependencies
run: yarn install --ignore-optional --ignore-platform
Expand Down
21 changes: 11 additions & 10 deletions elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
"elm-community/list-extra": "8.2.4",
"elm-community/maybe-extra": "5.2.0",
"elm-community/typed-svg": "6.0.0",
"folkertdev/one-true-path-experiment": "4.0.3",
"gampleman/elm-visualization": "2.1.1",
"folkertdev/one-true-path-experiment": "6.0.0",
"hecrj/html-parser": "2.3.4",
"jinjor/elm-debounce": "3.0.0",
"justinmimbs/date": "3.1.2",
Expand All @@ -38,26 +37,28 @@
"prozacchiwawa/elm-keccak": "2.0.0",
"rtfeldman/elm-hex": "1.0.0",
"rtfeldman/elm-iso8601-date-strings": "1.1.3",
"ryannhg/date-format": "2.0.1",
"ryan-haskell/date-format": "1.0.0",
"toastal/either": "3.5.2",
"torreyatcitty/the-best-decimal": "1.1.0"
},
"indirect": {
"elm/random": "1.0.0",
"elm/virtual-dom": "1.0.2",
"folkertdev/elm-deque": "3.0.1",
"folkertdev/svg-path-lowlevel": "3.0.0",
"folkertdev/svg-path-lowlevel": "4.0.1",
"ianmackenzie/elm-1d-parameter": "1.0.1",
"ianmackenzie/elm-float-extra": "1.1.0",
"ianmackenzie/elm-geometry": "1.2.1",
"ianmackenzie/elm-interval": "1.0.1",
"ianmackenzie/elm-triangular-mesh": "1.0.4"
"ianmackenzie/elm-geometry": "3.11.0",
"ianmackenzie/elm-interval": "3.1.0",
"ianmackenzie/elm-triangular-mesh": "1.1.0",
"ianmackenzie/elm-units": "2.10.0",
"ianmackenzie/elm-units-interval": "3.2.0"
}
},
"test-dependencies": {
"direct": {
"elm-explorations/test": "1.1.0"
},
"indirect": {
"elm/random": "1.0.0"
}
"indirect": {}
}
}
2 changes: 1 addition & 1 deletion scripts/ipfs.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function buildIpfsClient() {
urls = [
["IPFS Url", `https://ipfs.io/ipfs/${app.cid}`],
["Cloudflare Url", `https://cloudflare-ipfs.com/ipfs/${app.cid}`],
["Infura Url", `https://ipfs.infura.io/ipfs/${app.cid}`],
["Infura Url", `https://compound-app.infura-ipfs.io/ipfs/${app.cid}`],
];
urlText = urls.map(([name, url]) => ` * ${name}: ${url}`).join("\n");

Expand Down

0 comments on commit 27ee82d

Please sign in to comment.