Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gradle-update/update-gradle-wrapper-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5758161d081e5a6b81d8d4dfba1f09dfe25ce3c9
Choose a base ref
..
head repository: gradle-update/update-gradle-wrapper-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2636a5096ec1c0317dd36b4761a9ec1d11e038f6
Choose a head ref
Showing with 5,508 additions and 12,169 deletions.
  1. +2 −2 .github/workflows/ci.yml
  2. +1 −0 .gitignore
  3. +1 −1 .nvmrc
  4. +5 −0 CHANGELOG.md
  5. +2,960 −2,796 dist/index.js
  6. +2,521 −9,353 package-lock.json
  7. +11 −9 package.json
  8. +2 −3 src/tasks/main.ts
  9. +5 −5 tests/inputs/inputs.test.ts
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3.7.0
- uses: actions/setup-node@v4.0.0
with:
node-version: 16
node-version: 20
- run: |
if [ ! -f dist/index.js ]; then
echo "Missing dist file"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
coverage
lib
node_modules
.idea
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.13.0
v20.14.0
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v2.0.0

- Updated action to run with Node 20
- Updated action dependencies

## v1.0.20

- Added `auto-merge` input parameter, by @ChrisCarini
Loading