Skip to content

Commit

Permalink
fix(dep-bump): upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiSchwarz-cnic committed Jun 14, 2022
1 parent d5045e5 commit 35c1f98
Show file tree
Hide file tree
Showing 4 changed files with 12,661 additions and 13 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Java JDK 16 (adopt)
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: "16"
distribution: "adopt"
Expand All @@ -35,7 +35,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -46,14 +46,17 @@ jobs:
- run: |
unzip -o target.zip
rm target.zip
- uses: actions/setup-java@v2
- uses: actions/setup-java@v3
with:
java-version: "16"
distribution: "adopt"
- name: Setup NodeJS LTS
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: lts/*
check-latest: true
- name: Install dependencies
run: npm prune && npm i
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,3 @@ settings.xml
.settings
.sts4-cache
node_modules
package-lock.json
Loading

0 comments on commit 35c1f98

Please sign in to comment.