ijo42 / CurseForge2Discord

Update Announcer over Discord Webhooks. CurseForge
https://hub.docker.com/r/ijo42/curseforge2discord
MIT License
1 stars 2 forks source link

build(deps): bump eskatos/gradle-command-action from 1.3.3 to 2.1.1 #56

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps eskatos/gradle-command-action from 1.3.3 to 2.1.1.

Release notes

Sourced from eskatos/gradle-command-action's releases.

v2.1.1

This release improves logging and fixes a number of minor issues.

  • Fix misleading error message when gradlew script is not executable #76
  • Differentiate between build scan links generated for different steps in the same Job #124
  • Avoid overwriting existing Gradle User Home #138
  • Capture build scan links even when cache is disabled #139

In addition, 2 experimental configuration parameters have been added:

  • gradle-home-cache-strict-match: Only reuse cache entries generated by previous invocations for the same job
  • cache-write-only: Do not restore cache entries but save on Job completion

Full Changelog: https://github.com/gradle/gradle-build-action/compare/v2.1.0...v2.1.1

v2.1.0

Overview

This release brings a major improvement in usability, allowing the action to be used to "setup Gradle" without requiring all Gradle invocations to be managed by the action.

jobs:
  build-my-app:
    steps:
    - uses: actions/checkout@v2
    - name: Setup Gradle
      uses: gradle/gradle-build-action@v2
    - name: Execute Gradle build
      run: ./gradlew build

Any Gradle invocation after the first gradle-build-action step will benefit from caching and build-scan capture just as if it was invoked through a subsequent gradle-build-action. This is achieved via init scripts added when initializing/restoring the Gradle User Home.

This change makes it easier to adopt the gradle-build-action into an existing GitHub Actions workflow and enables usages such as:

  • Redirect all Gradle log output to a file #72
  • Run a script to configure the environment prior to Gradle invocation #15
  • Capture Gradle output for use in a subsequent step #112

Usability improvements

  • Can use regular run step to invoke Gradle and still benefit from Gradle User Home caching as well as build-scan integration.

Caching improvements

  • Wrapper distributions and generated API jars are now cached individually, allowing for better reuse and more efficient storage: #78
  • Java distributions downloaded by Gradle are cached: #33

Changes in detail

... (truncated)

Commits
  • b9c806c Fix example in action.yml
  • d2799e6 Merge pull request #142 from gradle/strict-cache-match
  • 2734714 Build outputs
  • f75a3e8 Make build-scan notice a WARNING for failed builds
  • c349fa5 Do not hide ReserveCacheError failures
  • 08d5b40 Add experimental support for 'cache-write-only'
  • 0a5ede1 Improve cache-reporting when entry already exists
  • a23ac1d Add experimental support for 'strict-match' caching
  • a8da4e5 Merge pull request #140 from gradle/cache-disable
  • 4f616f6 Include github.run_attempt in test cache keys
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #57.