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 actions/checkout action to v4.1.7 - autoclosed #42

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 8, 2024

This PR contains the following updates:

Package Type Update Change
actions/checkout action patch v4.1.4 -> v4.1.7

Release Notes

actions/checkout (actions/checkout)

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

What's Changed

Full Changelog: actions/checkout@v4.1.4...v4.1.5


Configuration

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

🚦 Automerge: Enabled.

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

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


  • 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 enabled auto-merge (rebase) May 8, 2024 21:01
Copy link

coderabbitai bot commented May 8, 2024

Important

Auto Review Skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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.

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 a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

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

CodeRabbit Configration 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.

@github-actions github-actions bot added the type: maintenance For maintenance, refactor and testing (perf, chore, style, revert, refactor, test, build, ci) label May 8, 2024
Copy link

github-actions bot commented May 8, 2024

🔍 Vulnerabilities of wayofdev/php-dev:latest

📦 Image Reference wayofdev/php-dev:latest
digestsha256:acaace99eeaca213f35f8fabeb7974b4d176e9a47e67451fa63c3add30833c2a
vulnerabilitiescritical: 0 high: 2 medium: 0 low: 0
size126 MB
packages240
📦 Base Image php:8.1-alpine
also known as
  • 8.1-alpine3.19
  • 8.1-cli-alpine
  • 8.1-cli-alpine3.19
  • 8.1.28-alpine
  • 8.1.28-alpine3.19
  • 8.1.28-cli-alpine
  • 8.1.28-cli-alpine3.19
digestsha256:31e447646222e94c36d3216eed060803166731e00bfa8f297c759f9c7b12cd67
vulnerabilitiescritical: 0 high: 0 medium: 5 low: 0 unspecified: 2
critical: 0 high: 1 medium: 0 low: 0 golang.org/x/net 0.8.0 (golang)

pkg:golang/golang.org/x/[email protected]

high 7.5: CVE--2023--39325 Uncontrolled Resource Consumption

Affected range<0.17.0
Fixed version0.17.0
CVSS Score7.5
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
EPSS Score0.21%
EPSS Percentile59th percentile
Description

A malicious HTTP/2 client which rapidly creates requests and immediately resets them can cause excessive server resource consumption. While the total number of requests is bounded by the http2.Server.MaxConcurrentStreams setting, resetting an in-progress request allows the attacker to create a new request while the existing one is still executing.

With the fix applied, HTTP/2 servers now bound the number of simultaneously executing handler goroutines to the stream concurrency limit (MaxConcurrentStreams). New requests arriving when at the limit (which can only happen after the client has reset an existing, in-flight request) will be queued until a handler exits. If the request queue grows too large, the server will terminate the connection.

This issue is also fixed in golang.org/x/net/http2 for users manually configuring HTTP/2.

The default stream concurrency limit is 250 streams (requests) per HTTP/2 connection. This value may be adjusted using the golang.org/x/net/http2 package; see the Server.MaxConcurrentStreams setting and the ConfigureServer function.

critical: 0 high: 1 medium: 0 low: 0 google.golang.org/grpc 1.54.0 (golang)

pkg:golang/google.golang.org/[email protected]

high 7.5: GHSA--m425--mq94--257g

Affected range<1.56.3
Fixed version1.56.3
CVSS Score7.5
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Description

Impact

In affected releases of gRPC-Go, it is possible for an attacker to send HTTP/2 requests, cancel them, and send subsequent requests, which is valid by the HTTP/2 protocol, but would cause the gRPC-Go server to launch more concurrent method handlers than the configured maximum stream limit.

Patches

This vulnerability was addressed by #6703 and has been included in patch releases: 1.56.3, 1.57.1, 1.58.3. It is also included in the latest release, 1.59.0.

Along with applying the patch, users should also ensure they are using the grpc.MaxConcurrentStreams server option to apply a limit to the server's resources used for any single connection.

Workarounds

None.

References

#6703

Copy link

github-actions bot commented May 8, 2024

🔍 Vulnerabilities of wayofdev/php-dev:latest

📦 Image Reference wayofdev/php-dev:latest
digestsha256:7035ddfe5cb7e1904d96402ca036973e1d8e4a5c8924842e83c897956a65388b
vulnerabilitiescritical: 0 high: 2 medium: 0 low: 0
size97 MB
packages203
📦 Base Image php:8-alpine
also known as
  • 8-alpine3.19
  • 8-cli-alpine
  • 8-cli-alpine3.19
  • 8.3-alpine
  • 8.3-alpine3.19
  • 8.3-cli-alpine
  • 8.3-cli-alpine3.19
  • 8.3.6-alpine
  • 8.3.6-alpine3.19
  • 8.3.6-cli-alpine
  • 8.3.6-cli-alpine3.19
  • alpine
  • alpine3.19
  • cli-alpine
  • cli-alpine3.19
digestsha256:dc7d4d8248ec8c31bfa65ec964b7db7b34384cf9a3a16ee5fbc8bf25e29c7413
vulnerabilitiescritical: 0 high: 0 medium: 1 low: 0
critical: 0 high: 1 medium: 0 low: 0 golang.org/x/net 0.8.0 (golang)

pkg:golang/golang.org/x/[email protected]

high 7.5: CVE--2023--39325 Uncontrolled Resource Consumption

Affected range<0.17.0
Fixed version0.17.0
CVSS Score7.5
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
EPSS Score0.21%
EPSS Percentile59th percentile
Description

A malicious HTTP/2 client which rapidly creates requests and immediately resets them can cause excessive server resource consumption. While the total number of requests is bounded by the http2.Server.MaxConcurrentStreams setting, resetting an in-progress request allows the attacker to create a new request while the existing one is still executing.

With the fix applied, HTTP/2 servers now bound the number of simultaneously executing handler goroutines to the stream concurrency limit (MaxConcurrentStreams). New requests arriving when at the limit (which can only happen after the client has reset an existing, in-flight request) will be queued until a handler exits. If the request queue grows too large, the server will terminate the connection.

This issue is also fixed in golang.org/x/net/http2 for users manually configuring HTTP/2.

The default stream concurrency limit is 250 streams (requests) per HTTP/2 connection. This value may be adjusted using the golang.org/x/net/http2 package; see the Server.MaxConcurrentStreams setting and the ConfigureServer function.

critical: 0 high: 1 medium: 0 low: 0 google.golang.org/grpc 1.54.0 (golang)

pkg:golang/google.golang.org/[email protected]

high 7.5: GHSA--m425--mq94--257g

Affected range<1.56.3
Fixed version1.56.3
CVSS Score7.5
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Description

Impact

In affected releases of gRPC-Go, it is possible for an attacker to send HTTP/2 requests, cancel them, and send subsequent requests, which is valid by the HTTP/2 protocol, but would cause the gRPC-Go server to launch more concurrent method handlers than the configured maximum stream limit.

Patches

This vulnerability was addressed by #6703 and has been included in patch releases: 1.56.3, 1.57.1, 1.58.3. It is also included in the latest release, 1.59.0.

Along with applying the patch, users should also ensure they are using the grpc.MaxConcurrentStreams server option to apply a limit to the server's resources used for any single connection.

Workarounds

None.

References

#6703

Copy link

github-actions bot commented May 8, 2024

Recommended fixes for image wayofdev/php-dev:latest

Base image is php:8.1-alpine

Name8.1.28-alpine3.19
Digestsha256:31e447646222e94c36d3216eed060803166731e00bfa8f297c759f9c7b12cd67
Vulnerabilitiescritical: 0 high: 0 medium: 5 low: 0 unspecified: 2
Pushed2 months ago
Size37 MB
Packages49
Flavoralpine
OS3.19
Runtime8.1.28
The base image is also available under the supported tag(s): 8.1-alpine3.19, 8.1-cli-alpine, 8.1-cli-alpine3.19

Refresh base image

Rebuild the image using a newer base image version. Updating this may result in breaking changes.
TagDetailsPushedVulnerabilities
8.1-alpine
Newer image for same tag
Also known as:
  • 8.1.29-cli-alpine
  • 8.1.29-cli-alpine3.20
  • 8.1-cli-alpine
  • 8.1-cli-alpine3.20
  • 8.1.29-alpine
  • 8.1.29-alpine3.20
  • 8.1-alpine3.20
Benefits:
  • Patch runtime version update
  • Same OS detected
  • Newer image for same tag
  • Image is smaller by 1.8 MB
  • Tag was pushed more recently
  • Image introduces no new vulnerability but removes 3
  • Image contains similar number of packages
  • 8.1-alpine was pulled 5.2K times last month
Image details:
  • Size: 35 MB
  • Flavor: alpine
  • OS: 3.20
  • Runtime: 8.1.29
6 days ago



Change base image

TagDetailsPushedVulnerabilities
8.1-alpine3.19
Patch runtime version update
Also known as:
  • 8.1.29-cli-alpine3.19
  • 8.1-cli-alpine3.19
  • 8.1.29-alpine3.19
Benefits:
  • Patch runtime version update
  • Same OS detected
  • Image is smaller by 494 KB
  • Tag was pushed more recently
  • Image has same number of vulnerabilities
  • Image contains similar number of packages
Image details:
  • Size: 37 MB
  • Flavor: alpine
  • OS: 3.19
  • Runtime: 8.1.29
6 days ago



8.3-alpine
Minor runtime version update
Also known as:
  • 8.3.8-cli-alpine
  • 8.3.8-cli-alpine3.20
  • 8.3-cli-alpine
  • 8.3-cli-alpine3.20
  • 8-cli-alpine
  • 8-cli-alpine3.20
  • cli-alpine
  • cli-alpine3.20
  • alpine
  • alpine3.20
  • 8.3.8-alpine
  • 8.3.8-alpine3.20
  • 8.3-alpine3.20
  • 8-alpine
  • 8-alpine3.20
Benefits:
  • Same OS detected
  • Minor runtime version update
  • Image is smaller by 500 KB
  • Tag was pushed more recently
  • Image introduces no new vulnerability but removes 3
  • Image contains similar number of packages
Image details:
  • Size: 37 MB
  • Flavor: alpine
  • OS: 3.20
  • Runtime: 8.3.8
6 days ago



8.2-alpine
Minor runtime version update
Also known as:
  • 8.2.20-cli-alpine
  • 8.2.20-cli-alpine3.20
  • 8.2-cli-alpine
  • 8.2-cli-alpine3.20
  • 8.2.20-alpine
  • 8.2.20-alpine3.20
  • 8.2-alpine3.20
Benefits:
  • Same OS detected
  • Minor runtime version update
  • Image is smaller by 1.2 MB
  • Tag was pushed more recently
  • Image introduces no new vulnerability but removes 3
  • Image contains similar number of packages
  • 8.2-alpine was pulled 1.8K times last month
Image details:
  • Size: 36 MB
  • Flavor: alpine
  • OS: 3.20
  • Runtime: 8.2.20
6 days ago



8.3-alpine3.19
Minor runtime version update
Also known as:
  • 8.3.8-cli-alpine3.19
  • 8.3-cli-alpine3.19
  • 8-cli-alpine3.19
  • cli-alpine3.19
  • alpine3.19
  • 8.3.8-alpine3.19
  • 8-alpine3.19
Benefits:
  • Same OS detected
  • Minor runtime version update
  • Tag was pushed more recently
  • Image has similar size
  • Image has same number of vulnerabilities
  • Image contains similar number of packages
Image details:
  • Size: 38 MB
  • Flavor: alpine
  • OS: 3.19
  • Runtime: 8.3.8
6 days ago



8.2-alpine3.19
Minor runtime version update
Also known as:
  • 8.2.20-cli-alpine3.19
  • 8.2-cli-alpine3.19
  • 8.2.20-alpine3.19
Benefits:
  • Same OS detected
  • Minor runtime version update
  • Tag was pushed more recently
  • Image has similar size
  • Image has same number of vulnerabilities
  • Image contains similar number of packages
Image details:
  • Size: 37 MB
  • Flavor: alpine
  • OS: 3.19
  • Runtime: 8.2.20
6 days ago



Copy link

github-actions bot commented May 8, 2024

Recommended fixes for image wayofdev/php-dev:latest

Base image is php:8-alpine

Name8.3.6-alpine3.19
Digestsha256:dc7d4d8248ec8c31bfa65ec964b7db7b34384cf9a3a16ee5fbc8bf25e29c7413
Vulnerabilitiescritical: 0 high: 0 medium: 1 low: 0
Pushed3 weeks ago
Size38 MB
Packages49
Flavoralpine
OS3.19
Runtime8.3.6
The base image is also available under the supported tag(s): 8-alpine3.19, 8-cli-alpine, 8-cli-alpine3.19, 8.3-alpine, 8.3-alpine3.19, 8.3-cli-alpine, 8.3-cli-alpine3.19, 8.3.6-alpine, 8.3.6-alpine3.19, 8.3.6-cli-alpine, 8.3.6-cli-alpine3.19, alpine, alpine3.19, cli-alpine, cli-alpine3.19

Refresh base image

Rebuild the image using a newer base image version. Updating this may result in breaking changes.

✅ This image version is up to date.

Change base image

✅ There are no tag recommendations at this time.

@renovate renovate bot force-pushed the renovate/actions-checkout-4.x branch from 5697e63 to 9f9affb Compare May 16, 2024 23:09
@renovate renovate bot changed the title chore(deps): update actions/checkout action to v4.1.5 chore(deps): update actions/checkout action to v4.1.6 May 16, 2024
@renovate renovate bot force-pushed the renovate/actions-checkout-4.x branch from 9f9affb to d33781b Compare June 12, 2024 23:02
@renovate renovate bot changed the title chore(deps): update actions/checkout action to v4.1.6 chore(deps): update actions/checkout action to v4.1.7 Jun 12, 2024
@renovate renovate bot force-pushed the renovate/actions-checkout-4.x branch from d33781b to 8755f88 Compare June 13, 2024 10:40
@renovate renovate bot force-pushed the renovate/actions-checkout-4.x branch from 8755f88 to 92f79ae Compare June 13, 2024 10:49
@renovate renovate bot changed the title chore(deps): update actions/checkout action to v4.1.7 chore(deps): update actions/checkout action to v4.1.7 - autoclosed Sep 11, 2024
@renovate renovate bot closed this Sep 11, 2024
auto-merge was automatically disabled September 11, 2024 16:44

Pull request was closed

@renovate renovate bot deleted the renovate/actions-checkout-4.x branch September 11, 2024 16:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: maintenance For maintenance, refactor and testing (perf, chore, style, revert, refactor, test, build, ci)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants