From 0697e1555d441c97135550e5602f0b3494bd73b0 Mon Sep 17 00:00:00 2001 From: Luan Gong Date: Wed, 19 Oct 2022 05:32:52 +0800 Subject: [PATCH] Update README.md to reflect the latest version of install4j See https://www.ej-technologies.com/download/install4j/changelog.html for more details. --- .github/workflows/ci.yml | 2 +- README.md | 2 +- src/index.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c56e05e..0503ba6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [windows-latest, ubuntu-latest, macos-latest] version: - # - '8.0.11' + - '8.0.11' - '9.0.7' - '10.0.3' runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 5e79962..0f02fe7 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This action provides the following functionality for GitHub Actions runners: steps: - uses: luangong/setup-install4j@main with: - version: 9.0.7 + version: 10.0.3 license: ${{ secrets.INSTALL4J_LICENSE }} ``` diff --git a/src/index.ts b/src/index.ts index b77d19c..9570afb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -93,8 +93,8 @@ function downloadInstaller(platformConfig: PlatformConfig, version: string): Pro // https://download.ej-technologies.com/install4j/install4j_linux-x64_9_0_7.deb // https://download.ej-technologies.com/install4j/install4j_linux-x64_9_0_7.sh - // https://download.ej-technologies.com/install4j/install4j_macos_10_0_1.dmg - // https://download.ej-technologies.com/install4j/install4j_linux-x64_10_0_1.sh + // https://download.ej-technologies.com/install4j/install4j_macos_10_0_3.dmg + // https://download.ej-technologies.com/install4j/install4j_linux-x64_10_0_3.sh const baseUrl = 'https://download.ej-technologies.com/install4j'; const versionUnderscores = version.replace(/\./g, '_'); // eslint-disable-next-line