Skip to content

Commit

Permalink
Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 23, 2024
1 parent dcd0d4f commit 116dcab
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setip Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -28,6 +28,6 @@ jobs:
- run: npm run lint
- run: npm run test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
flags: unittests
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -44,7 +44,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -58,4 +58,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Zip files
run: |
zip -r hover-align.zip module.json README.md CHANGELOG.md LICENSE modules lang
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.0.0",
"description": "A basic FoundryVTT module to display PC/NPC alignment when hovering over a token",
"engines": {
"npm": "8.5.1"
"npm": "10.8.2"
},
"scripts": {
"lint": "eslint . --ext .json,.js --max-warnings 0",
Expand All @@ -23,18 +23,18 @@
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"babel-jest": "27.5.1",
"eslint": "8.9.0",
"eslint-config-prettier": "8.4.0",
"babel-jest": "29.7.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-jest": "3.0.2",
"eslint-plugin-foundry-vtt": "0.0.1",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.5.1",
"jest-extended": "2.0.0",
"jest-junit": "13.0.0",
"prettier": "2.5.1"
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"jest-junit": "16.0.0",
"prettier": "3.3.3"
}
}

0 comments on commit 116dcab

Please sign in to comment.