From dafff6a9a2d31d7c54e36d3e89a6ccd5d661913f Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidoS@users.noreply.github.com> Date: Wed, 9 Apr 2025 16:05:01 -0500 Subject: [PATCH] [NAK_CVR_Mods] trust --- .github/workflows/update-modlist.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-modlist.yml b/.github/workflows/update-modlist.yml index 2b117fb..3376080 100644 --- a/.github/workflows/update-modlist.yml +++ b/.github/workflows/update-modlist.yml @@ -3,7 +3,7 @@ name: Update Mod List on: push: paths: - - 'scripts/update_modlist.py' + - 'update-modlist.js' - '.github/workflows/update-modlist.yml' - 'README.md' - '**/README.md' @@ -17,13 +17,13 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 + - name: Set up Node.js + uses: actions/setup-node@v3 with: - python-version: '3.x' + node-version: '20' - name: Run mod list updater - run: python scripts/update_modlist.py + run: node update-modlist.js - name: Commit and push changes run: |