Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update eclipse-temurin docker tag to v21.0.4_7-jre-alpine #1384

Merged
merged 4 commits into from
Aug 22, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 22, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
eclipse-temurin final patch 17.0.11_9-jre-focal -> 17.0.12_7-jre-focal
eclipse-temurin stage patch 17.0.11_9-jre-focal -> 17.0.12_7-jre-focal

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled because a matching PR was automerged previously.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

Summary by CodeRabbit

  • Chores
    • Updated the base image in the Dockerfile to a newer version of the Eclipse Temurin JRE, enhancing security and performance.

Copy link
Contributor

coderabbitai bot commented Aug 22, 2024

Warning

Rate limit exceeded

@rajadilipkolli has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 23 minutes and 24 seconds before requesting another review.

How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

Commits

Files that changed from the base of the PR and between 4f683a2 and 5749888.

Walkthrough

The Dockerfile has been updated to use a newer version of the Eclipse Temurin JRE, changing the base image from eclipse-temurin:17.0.11_9-jre-focal to eclipse-temurin:21.0.4_7-jre-alpine. This modification applies to both the builder and final stages of the Docker image build process. No alterations were made to exported or public entities, application logic, or build processes beyond this version update.

Changes

Files Change Summary
r2dbc/boot-reactive-cache/Dockerfile Updated JRE version from 17.0.11_9-jre-focal to 21.0.4_7-jre-alpine in both builder and final stages.

Poem

In the world of code, a change so bright,
A newer JRE, what a delight! 🐇
With fixes and updates, we hop along,
Enhancing our builds, we can’t go wrong!
So let’s celebrate, with joy and cheer,
For with every update, our future is clear! ✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Outside diff range, codebase verification and nitpick comments (1)
r2dbc/boot-reactive-cache/Dockerfile (1)

2-2: Consider using an absolute path for WORKDIR.

The static analysis tool suggests using an absolute path for the WORKDIR to avoid potential issues with relative paths.

Apply this diff to use an absolute path:

-WORKDIR application
+WORKDIR /application

Also applies to: 9-9

Tools
Hadolint

[error] 2-2: Use absolute WORKDIR

(DL3000)

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 084144f and 73b0bb5.

Files selected for processing (1)
  • r2dbc/boot-reactive-cache/Dockerfile (1 hunks)
Additional context used
Hadolint
r2dbc/boot-reactive-cache/Dockerfile

[error] 2-2: Use absolute WORKDIR

(DL3000)

Additional comments not posted (1)
r2dbc/boot-reactive-cache/Dockerfile (1)

1-1: Base image version update is appropriate.

The base image has been updated to eclipse-temurin:17.0.12_7-jre-focal in both the builder and final stages. This update is beneficial for incorporating security patches and performance improvements.

Also applies to: 8-8

@rajadilipkolli rajadilipkolli changed the title chore(deps): update eclipse-temurin docker tag to v17.0.12_7-jre-focal chore(deps): update eclipse-temurin docker tag to v21.0.4_7-jre-alpine Aug 22, 2024
Copy link
Contributor Author

renovate bot commented Aug 22, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 73b0bb5 and 4f683a2.

Files selected for processing (1)
  • r2dbc/boot-reactive-cache/Dockerfile (1 hunks)
Additional context used
Hadolint
r2dbc/boot-reactive-cache/Dockerfile

[error] 2-2: Use absolute WORKDIR

(DL3000)

r2dbc/boot-reactive-cache/Dockerfile Outdated Show resolved Hide resolved
r2dbc/boot-reactive-cache/Dockerfile Outdated Show resolved Hide resolved
rajadilipkolli and others added 2 commits August 22, 2024 11:10
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
@rajadilipkolli rajadilipkolli merged commit ed7d688 into main Aug 22, 2024
4 checks passed
@rajadilipkolli rajadilipkolli deleted the renovate/eclipse-temurin-17.x branch August 22, 2024 05:41
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant