Skip to content

Commit

Permalink
Update dep and CI CD tools
Browse files Browse the repository at this point in the history
  • Loading branch information
haimkastner committed Jun 11, 2024
1 parent 20223d3 commit 17ef6a2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Update version patch
Expand Down Expand Up @@ -66,12 +66,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
if: github.ref != 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: test backend
Expand All @@ -86,12 +86,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@master
Expand All @@ -116,7 +116,7 @@ jobs:
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"ts-events": "^3.4.0",
"tsoa": "^3.6.1",
"tuyapi": "^7.4.0",
"unitsnet-js": "^1.0.42",
"unitsnet-js": "^3.0.5",
"winston": "^3.2.1",
"yeelight-awesome": "^1.0.12"
},
Expand Down
8 changes: 4 additions & 4 deletions backend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6141,10 +6141,10 @@ unique-string@^1.0.0:
dependencies:
crypto-random-string "^1.0.0"

unitsnet-js@^1.0.42:
version "1.0.42"
resolved "https://registry.yarnpkg.com/unitsnet-js/-/unitsnet-js-1.0.42.tgz#a21046a8c20ac04718389ace6a643aea165906f5"
integrity sha512-NN5qOnLpg5rC/DoLf+5GSSldNtGvfTGli37dijGedLj2t70Wt8CgGpkNd544NohCTcaL07zEDOq5lSrDQVXzEQ==
unitsnet-js@^3.0.5:
version "3.0.5"
resolved "https://registry.yarnpkg.com/unitsnet-js/-/unitsnet-js-3.0.5.tgz#8e6796edffec045630705a329a00befd1d492d89"
integrity sha512-aYQ1wauYsvrmUI82GpLpOydNdxHUKdZvyU+O8c63Uhp0db5oxe7o3lU20WqtrboaKm8ORhaEpSGVjzDPeFhqvg==

universalify@^0.1.0:
version "0.1.2"
Expand Down

0 comments on commit 17ef6a2

Please sign in to comment.