Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
fix(test upd): node
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-sanders-cc committed Apr 6, 2024
1 parent c32e1bf commit 31fc8dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/nix-flake-update-node-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
push:
branches:
- 'release-please--branches--master--components--clever-tools'
# paths:
# - 'package.json'
paths:
- 'package.json'
jobs:
get-major-node-version:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -33,9 +33,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: replace nix flake node version
run: |
echo ${{ needs.get_major_node_version.outputs.handle }}
echo ${{ needs.get_major_node_version.outputs.nodeVersion }}
sed -r -i "s/(nodejs-.._x)/nodejs-${{ needs.get-major-node-version.outputs.nodeVersion }}_x/gm" flake.nix
run: sed -r -i "s/(nodejs-.._x)/nodejs-${{ needs.get-major-node-version.outputs.nodeVersion }}_x/gm" flake.nix
- name: run git status
run: git status
- run: |
git config --global user.name 'Florian Sanders'
git config --global user.email 'florian.sanders@clever-cloud.com'
git status
git commit -m "chore(flake): update node version"
git push
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@
]
},
"volta": {
"node": "19.15.4"
"node": "20.15.4"
}
}

0 comments on commit 31fc8dd

Please sign in to comment.