Skip to content

Commit 661c38c

Browse files
update dependencies (#208)
* update dependencies * add premium to CI * fix premium CI
1 parent fba49ab commit 661c38c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ on:
2020
notifications:
2121
description: "Version of the notifications. Only numbers"
2222
required: true
23+
premium:
24+
description: "Version of the premium. Only numbers"
25+
required: true
2326

2427
env:
2528
CORE_BUMP_TYPE: ${{ github.event.inputs.core }}
@@ -28,6 +31,7 @@ env:
2831
DAPPMANAGER_VERSION: ${{ github.event.inputs.dappmanager }}
2932
WIFI_VERSION: ${{ github.event.inputs.wifi }}
3033
NOTIFICATIONS_VERSION: ${{ github.event.inputs.notifications }}
34+
PREMIUM_VERSION: ${{ github.event.inputs.premium }}
3135

3236
jobs:
3337
release:
@@ -42,7 +46,8 @@ jobs:
4246
- name: Check versions regex
4347
run: |
4448
[[ $BIND_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $IPFS_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $DAPPMANAGER_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && \
45-
[[ $WIFI_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $NOTIFICATIONS_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || { echo "versions introduced in wrong format"; exit 1; }
49+
[[ $WIFI_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $NOTIFICATIONS_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $PREMIUM_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || \
50+
{ echo "versions introduced in wrong format"; exit 1; }
4651
4752
- uses: actions/checkout@v4
4853

@@ -54,6 +59,7 @@ jobs:
5459
sed -i -e "/dappmanager.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${DAPPMANAGER_VERSION}"/" dappnode_package.json
5560
sed -i -e "/wifi.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${WIFI_VERSION}"/" dappnode_package.json
5661
sed -i -e "/notifications.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${NOTIFICATIONS_VERSION}"/" dappnode_package.json
62+
sed -i -e "/premium.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${PREMIUM_VERSION}"/" dappnode_package.json
5763
cat dappnode_package.json
5864
5965
- name: Setup node

dappnode_package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "core.dnp.dappnode.eth",
3-
"version": "0.3.8",
3+
"version": "0.3.9",
44
"description": "DAppNode package responsible for managing the core packages",
55
"type": "dncore",
66
"architectures": ["linux/amd64", "linux/arm64"],
@@ -23,9 +23,10 @@
2323
"dependencies": {
2424
"bind.dnp.dappnode.eth": "0.2.12",
2525
"ipfs.dnp.dappnode.eth": "0.2.26",
26-
"dappmanager.dnp.dappnode.eth": "0.2.110",
26+
"dappmanager.dnp.dappnode.eth": "0.2.111",
2727
"wifi.dnp.dappnode.eth": "0.2.9",
28-
"notifications.dnp.dappnode.eth": "0.1.5"
28+
"notifications.dnp.dappnode.eth": "0.1.6",
29+
"premium.dnp.dappnode.eth": "0.1.0"
2930
},
3031
"optionalDependencies": {
3132
"wireguard.dnp.dappnode.eth": "0.1.3",

0 commit comments

Comments
 (0)