diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index e2b7498..c2208d9 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -33,7 +33,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: '21.x' + node-version: '22.x' - name: Delete `.rustup` directory run: rm -rf /home/runner/.rustup # to save disk space if: runner.os == 'Linux' diff --git a/.github/workflows/nodejstests.yml b/.github/workflows/nodejstests.yml index 3267dcb..802ff13 100644 --- a/.github/workflows/nodejstests.yml +++ b/.github/workflows/nodejstests.yml @@ -8,7 +8,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] java-version: ['21', '22'] - node-version: ['21.x'] + node-version: ['20.x', '22.x'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -75,7 +75,7 @@ jobs: strategy: matrix: java-version: ['21', '22'] - node-version: ['21.x'] + node-version: ['22.x'] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} diff --git a/.github/workflows/repotests.yml b/.github/workflows/repotests.yml index e0c4032..52e5adb 100644 --- a/.github/workflows/repotests.yml +++ b/.github/workflows/repotests.yml @@ -65,7 +65,7 @@ jobs: - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: - node-version: '21.x' + node-version: '22.x' - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: @@ -114,7 +114,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} JAVA_TOOL_OPTIONS: "-Dfile.encoding=UTF-8" - run: | - .\atom.bat usages --extract-endpoints --remove-atom -o $GITHUB_WORKSPACE\\repotests\\DjanGoat\\py3.atom -l python $GITHUB_WORKSPACE\\repotests\\DjanGoat -Dlog4j.configurationFile=log4j2.xml --slice-outfile $GITHUB_WORKSPACE\\repotests\\DjanGoat\\py.usages.json + .\atom.bat usages --extract-endpoints --remove-atom -o $GITHUB_WORKSPACE\\repotests\\DjanGoat\\py3.atom -l python $GITHUB_WORKSPACE\\repotests\\DjanGoat --slice-outfile $GITHUB_WORKSPACE\\repotests\\DjanGoat\\py.usages.json python -m json.tool $GITHUB_WORKSPACE\\repotests\\DjanGoat\\openapi.generated.json if: runner.os == 'Windows' env: