diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 94cdd1a4..dfb446a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: @@ -18,10 +18,22 @@ jobs: java-package: jdk+fx - name: Create macOS app if: matrix.os == 'macOS-latest' - run: gradle createApp + uses: eskatos/gradle-command-action@v1 + with: + arguments: createApp + wrapper-cache-enabled: true + dependencies-cache-enabled: true - name: Create Linux tar.gz if: matrix.os == 'ubuntu-latest' - run: gradle createLinuxTargz + uses: eskatos/gradle-command-action@v1 + with: + arguments: createLinuxTargz + wrapper-cache-enabled: true + dependencies-cache-enabled: true - name: Create Windows exe if: matrix.os == 'windows-latest' - run: gradle createWindowsInstaller + uses: eskatos/gradle-command-action@v1 + with: + arguments: createWindowsInstaller + wrapper-cache-enabled: true + dependencies-cache-enabled: true diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 82c5c932..72a15ab7 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v1 + - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue has been automatically marked stale because it has been open 20 days with no activity. If you would like this to remain open, please remove the stale label or comment, otherwise this issue will be closed in 3 days.'