From 116dcab53f14c9d76d7e04ce86f72cce90908260 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 23 Aug 2024 22:53:47 +0000 Subject: [PATCH] Update Dependencies --- .github/workflows/build.yml | 8 ++++---- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/release.yml | 2 +- package.json | 22 +++++++++++----------- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aecda9c..27b6f55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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') }} @@ -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 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index dfd78ad..d644a33 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -25,7 +25,7 @@ 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. @@ -33,7 +33,7 @@ jobs: # 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. @@ -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 @@ -58,4 +58,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e359b85..e8aec1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/package.json b/package.json index ff8c508..1ec2e9b 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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" } }