Skip to content

Update GitHub Actions (major)#272

Open
renovate[bot] wants to merge 1 commit into
devfrom
renovate/major-github-actions
Open

Update GitHub Actions (major)#272
renovate[bot] wants to merge 1 commit into
devfrom
renovate/major-github-actions

Conversation

@renovate

@renovate renovate Bot commented Sep 5, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v3v7
actions/setup-java action major v3v5
suzuki-shunsuke/github-action-renovate-config-validator action major v0.1.2v2.1.0

Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

v5

Compare Source

v4.3.1

Compare Source

v4.3.0

Compare Source

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

  • Fix: Disable sparse checkout whenever sparse-checkout option is not present @​dscho in #​1598

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.0

Compare Source

v4

Compare Source

actions/setup-java (actions/setup-java)

v5.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-java@v5...v5.3.0

v5.2.0

Compare Source

What's Changed
Enhancement
Documentation Changes
Dependency Updates
New Contributors

Full Changelog: actions/setup-java@v5...v5.2.0

v5.1.0

Compare Source

What's Changed
New Features
Bug Fixes & Improvements
Documentation changes
Dependency updates
New Contributors

Full Changelog: actions/setup-java@v5...v5.1.0

v5.0.0

Compare Source

What's Changed
Breaking Changes

Make sure your runner is updated to this version or newer to use this release. v2.327.1 Release Notes

Dependency Upgrades
Bug Fixes
New Contributors

Full Changelog: actions/setup-java@v4...v5.0.0

v5

Compare Source

v4.8.0

Compare Source

What's Changed

Full Changelog: actions/setup-java@v4...v4.8.0

v4.7.1

Compare Source

What's Changed

Documentation changes
Dependency updates:

Full Changelog: actions/setup-java@v4...v4.7.1

v4.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-java@v4...v4.7.0

v4.6.0

Compare Source

What's Changed

Add-ons:

 - name: Checkout
   uses: actions/checkout@v4
 - name: Setup-java
   uses: actions/setup-java@v4
   with:
     distribution: ‘jetbrains’
     java-version: '21'

Bug fixes:

New Contributors

Full Changelog: actions/setup-java@v4...v4.6.0

v4.5.0

Compare Source

What's Changed

Bug fixes:
New Contributors:

Full Changelog: actions/setup-java@v4...v4.5.0

v4.4.0

Compare Source

What's Changed

Add-ons :

steps:
 - name: Checkout
   uses: actions/checkout@v4
 - name: Setup-java
   uses: actions/setup-java@v4
   with:
     distribution: 'graalvm'
     java-version: '21'
  • Add workflow file for publishing releases to immutable action package by @​Jcambass in #​684

Bug fixes :

  • Add architecture to cache key by @​Zxilly in #​664
    This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts.
    Note: This change may break previous cache keys as they will no longer be compatible with the new format.
  • Resolve check failures by @​aparnajyothi-y in #​687

New Contributors

Full Changelog: actions/setup-java@v4...v4.4.0

v4.3.0

Compare Source

What's Changed

steps:
 - name: Checkout
   uses: actions/checkout@v4
 - name: Setup-java
   uses: actions/setup-java@v4
   with:
     distribution: 'sapmachine'
     java-version: '21'

Bug fixes :

New Contributors :

Full Changelog: actions/setup-java@v4...v4.3.0

v4.2.2

Compare Source

What's Changed



Bug fixes:
Documentation changes
Dependency updates:

Full Changelog: actions/setup-java@v4...v4.2.2

v4.2.1

Compare Source

What's Changed

Full Changelog: actions/setup-java@v4...v4.2.1

v4.2.0

Compare Source

What's Changed

New Contributors

v4.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-java@v4...v4.1.0

v4.0.0

Compare Source

What's Changed

In the scope of this release, the version of the Node.js runtime was updated to 20. The majority of dependencies were updated to the latest versions. From now on, the code for the setup-java will run on Node.js 20 instead of Node.js 16.

Breaking changes

Non-breaking changes

New Contributors

Full Changelog: actions/setup-java@v3...v4.0.0

v4

Compare Source

suzuki-shunsuke/github-action-renovate-config-validator (suzuki-shunsuke/github-action-renovate-config-validator)

v2.1.0

Compare Source

Features

#​1092 Enable npm cache by default

Cache improves the performance and mitigates the API Rate Limit Issues.

v2.0.0

Compare Source

⚠️ Breaking Change

#​1063 The action installs Node.js 24 by default to support the latest Renovate.
If you don't want to install it, please set the input node-version to none.

Fixes

#​1060 Install the latest Renovate by default @​deviantintegral

v1.1.1

Compare Source

Bug Fixes

#​768 #​770 #​772 Fixed a bug strict doesn't work

renovate-config-validator has an issue aboutRENOVATE_CONFIG_FILE.

And now renovate-config-validator can accept files via positional arguments.

Unlike RENOVATE_CONFIG_FILE, positional arguments can pass multiple files, so we don't need to run renovate-config-validator by file.
So this release replaces RENOVATE_CONFIG_FILE with positional arguments.

v1.1.0

Compare Source

Features

#​699 #​701 Support validating multiple files

You can validate multiple files by setting multiple lines to config_file_path.
Leading spaces on each line are removed.

e.g.

with:
  config_file_path: |
    default.json
    foo.json

You can pass config_file_path through output command.

e.g.

      - id: files
        run: |
          set -euo pipefail
          files=$(git ls-files | grep renovate.json)
          # https://stackoverflow.com/a/74232400
          EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
          {
            echo "files<<$EOF"
            echo "$files"
            echo "$EOF"
          } >> "$GITHUB_OUTPUT"
      - name: Pass files through output
        uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.0
        with:
          config_file_path: ${{ steps.files.outputs.files }}

v1.0.1

Compare Source

Fixes

#​551 Suppress npx warnings using --yes option @​TWiStErRob

This action executes renovate-config-validator via npx, then the following warning was outputted.

npm WARN exec The following package was not found and will be installed: renovate@37.130.0

To suppress the warning, we set npx's --yes option.

https://docs.npmjs.com/cli/v8/commands/npx

If any requested packages are not present in the local project dependencies, then they are installed to a folder in the npm cache, which is added to the PATH environment variable in the executed process.
A prompt is printed (which can be suppressed by providing either --yes or --no).

To prevent security and user-experience problems from mistyping package names, npx prompts before installing anything.
Suppress this prompt with the -y or --yes option.
The --no-install option is deprecated, and will be converted to --no.

🎉 New contributors

Thank you for your contribution!

@​TWiStErRob #​551

v1.0.0

Compare Source

⚠️ Breaking Changes

#​531 renovate-config-validator's --strict option is enabled by default.

How to migrate

There are several options.

  1. Recommended: Fix Renovate configuration according to the error message
  2. Unrecommended: Set false to the input strict to disable --strict option

⚠️ Security Improvement

#​530 Pass inputs via environment variables to prevent malicious injection

Features

#​531 Add the input strict.

You can enable renovate-config-validator's --strict option.

v0.1.3

Compare Source

#​316 Support .renovaterc.json5 by default

https://docs.renovatebot.com/configuration-options/#configuration-options


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3am every weekday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title Update actions/checkout action to v4 Update actions/checkout action to v4 - autoclosed Oct 17, 2023
@renovate renovate Bot closed this Oct 17, 2023
@renovate renovate Bot deleted the renovate/major-github-actions branch October 17, 2023 17:34
@renovate renovate Bot changed the title Update actions/checkout action to v4 - autoclosed Update actions/checkout action to v4 Oct 19, 2023
@renovate renovate Bot reopened this Oct 19, 2023
@renovate renovate Bot restored the renovate/major-github-actions branch October 19, 2023 15:16
@renovate renovate Bot changed the title Update actions/checkout action to v4 Update GitHub Actions to v4 (major) Nov 29, 2023
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 22aa8b4 to 466f85e Compare November 29, 2023 16:26
@renovate renovate Bot changed the title Update GitHub Actions to v4 (major) Update GitHub Actions (major) Dec 8, 2023
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 466f85e to 840542f Compare December 8, 2023 07:43
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 840542f to 17b6af5 Compare January 13, 2024 10:47
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 17b6af5 to a44f5c9 Compare August 29, 2024 02:21
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from a44f5c9 to a88cd33 Compare November 27, 2024 03:51
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from a88cd33 to 24b2075 Compare August 11, 2025 14:07
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 24b2075 to 4a0b1f6 Compare September 2, 2025 23:39
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 4a0b1f6 to e2ea557 Compare November 20, 2025 21:00
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from e2ea557 to d0f5093 Compare January 16, 2026 10:33
@kenyee

kenyee commented Jan 16, 2026

Copy link
Copy Markdown
Collaborator

Hmm...build shouldn't fail...looks like a minor change 🤔

@renovate renovate Bot force-pushed the renovate/major-github-actions branch from d0f5093 to 65e6536 Compare February 27, 2026 13:03
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 65e6536 to e2b79c0 Compare June 18, 2026 20:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant