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

Bump the all group with 7 updates #723

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps the all group with 7 updates:

Package From To
peter-evans/create-pull-request 5 6
actions/setup-node 4.0.1 4.0.2
actions/upload-artifact 3 4
actions/download-artifact 3 4
peaceiris/actions-gh-pages 3.9.3 4.0.0
reviewdog/action-eslint 1.20 1.23
reviewdog/action-stylelint 1.18 1.22

Updates peter-evans/create-pull-request from 5 to 6

Release notes

Sourced from peter-evans/create-pull-request's releases.

Create Pull Request v6.0.0

Behaviour changes

  • The default values for author and committer have changed. See "What's new" below for details. If you are overriding the default values you will not be affected by this change.
  • On completion, the action now removes the temporary git remote configuration it adds when using push-to-fork. This should not affect you unless you were using the temporary configuration for some other purpose after the action completes.

What's new

  • Updated runtime to Node.js 20
    • The action now requires a minimum version of v2.308.0 for the Actions runner. Update self-hosted runners to v2.308.0 or later to ensure compatibility.
  • The default value for author has been changed to ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>. The change adds the ${{ github.actor_id }}+ prefix to the email address to align with GitHub's standard format for the author email address.
  • The default value for committer has been changed to github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>. This is to align with the default GitHub Actions bot user account.
  • Adds input git-token, the Personal Access Token (PAT) that the action will use for git operations. This input defaults to the value of token. Use this input if you would like the action to use a different token for git operations than the one used for the GitHub API.
  • push-to-fork now supports pushing to sibling repositories in the same network.
  • Previously, when using push-to-fork, the action did not remove temporary git remote configuration it adds during execution. This has been fixed and the configuration is now removed when the action completes.
  • If the pull request body is truncated due to exceeding the maximum length, the action will now suffix the body with the message "...[Pull request body truncated]" to indicate that the body has been truncated.
  • The action now uses --unshallow only when necessary, rather than as a default argument of git fetch. This should improve performance, particularly for large git repositories with extensive commit history.
  • The action can now be executed on one GitHub server and create pull requests on a different GitHub server. Server products include GitHub hosted (github.com), GitHub Enterprise Server (GHES), and GitHub Enterprise Cloud (GHEC). For example, the action can be executed on GitHub hosted and create pull requests on a GHES or GHEC instance.

What's Changed

New Contributors

Full Changelog: peter-evans/create-pull-request@v5.0.2...v6.0.0

Create Pull Request v5.0.2

⚙️ Fixes an issue that occurs when using push-to-fork and both base and head repositories are in the same org/user account.

What's Changed

Full Changelog: peter-evans/create-pull-request@v5.0.1...v5.0.2

Create Pull Request v5.0.1

What's Changed

Full Changelog: peter-evans/create-pull-request@v5.0.0...v5.0.1

Commits
  • c55203c fix: drop unnecessary fetch with unshallow on push-to-fork (#2849)
  • 6ce4eca build(deps-dev): bump @​types/node from 18.19.28 to 18.19.31 (#2842)
  • 36ef0ed build(deps-dev): bump @​types/node from 18.19.26 to 18.19.28 (#2836)
  • 8500972 build(deps-dev): bump @​types/node from 18.19.25 to 18.19.26 (#2831)
  • bda5ade build(deps-dev): bump @​types/node from 18.19.23 to 18.19.25 (#2826)
  • 70a41ab perf: shallow fetch the actual base when rebasing from working base (#2816)
  • 57a1014 build(deps-dev): bump @​types/node from 18.19.21 to 18.19.23 (#2811)
  • b3a2c5d build(deps-dev): bump @​types/node from 18.19.18 to 18.19.21 (#2798)
  • 02c7da5 build(deps-dev): bump eslint-plugin-github from 4.10.1 to 4.10.2 (#2797)
  • bac6da8 docs: update description of delete-branch
  • Additional commits viewable in compare view

Updates actions/setup-node from 4.0.1 to 4.0.2

Release notes

Sourced from actions/setup-node's releases.

v4.0.2

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4.0.1...v4.0.2

Commits

Updates actions/upload-artifact from 3 to 4

Release notes

Sourced from actions/upload-artifact's releases.

v4.0.0

What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.

ℹ️ However, this is a major update that includes breaking changes. Artifacts created with versions v3 and below are not compatible with the v4 actions. Uploads and downloads must use the same major actions versions. There are also key differences from previous versions that may require updates to your workflows.

For more information, please see:

  1. The changelog post.
  2. The README.
  3. The migration documentation.
  4. As well as the underlying npm package, @​actions/artifact documentation.

New Contributors

Full Changelog: actions/upload-artifact@v3...v4.0.0

v3.1.3

What's Changed

Full Changelog: actions/upload-artifact@v3...v3.1.3

v3.1.2

  • Update all @actions/* NPM packages to their latest versions- #374
  • Update all dev dependencies to their most recent versions - #375

v3.1.1

  • Update actions/core package to latest version to remove set-output deprecation warning #351

v3.1.0

What's Changed

Commits
  • 5d5d22a Merge pull request #515 from actions/eggyhead/update-artifact-v2.1.1
  • f1e993d update artifact license
  • 4881bfd updating dist:
  • a30777e @​eggyhead
  • 3a80482 Merge pull request #511 from actions/robherley/migration-docs-typo
  • 9d63e3f Merge branch 'main' into robherley/migration-docs-typo
  • dfa1ab2 fix typo with v3 artifact downloads in migration guide
  • d00351b Merge pull request #509 from markmssd/patch-1
  • 707f5a7 Update limitation of 10 artifacts upload to 500
  • 26f96df Merge pull request #505 from actions/robherley/merge-artifacts
  • Additional commits viewable in compare view

Updates actions/download-artifact from 3 to 4

Release notes

Sourced from actions/download-artifact's releases.

v4.0.0

What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.

ℹ️ However, this is a major update that includes breaking changes. Artifacts created with versions v3 and below are not compatible with the v4 actions. Uploads and downloads must use the same major actions versions. There are also key differences from previous versions that may require updates to your workflows.

For more information, please see:

  1. The changelog post.
  2. The README.
  3. The migration documentation.
  4. As well as the underlying npm package, @​actions/artifact documentation.

New Contributors

Full Changelog: actions/download-artifact@v3...v4.0.0

v3.0.2

v3.0.1

Commits

Updates peaceiris/actions-gh-pages from 3.9.3 to 4.0.0

Release notes

Sourced from peaceiris/actions-gh-pages's releases.

actions-github-pages v4.0.0

See CHANGELOG.md for more details.

Changelog

Sourced from peaceiris/actions-gh-pages's changelog.

4.0.0 (2024-04-08)

build

chore

ci

docs

Commits
  • 4f9cc66 chore(release): 4.0.0
  • 9c75028 chore(release): Add build assets
  • 5049354 build: node 20.11.1
  • 4eb285e chore: bump node16 to node20 (#1067)
  • cdc09a3 chore(deps): update dependency @​types/node to v16.18.77 (#1065)
  • d830378 chore(deps): update dependency @​types/node to v16.18.76 (#1063)
  • 80daa1d chore(deps): update dependency @​types/node to v16.18.75 (#1061)
  • 108285e chore(deps): update dependency ts-jest to v29.1.2 (#1060)
  • 99c95ff chore(deps): update dependency @​types/node to v16.18.74 (#1058)
  • 1f46537 chore(deps): update dependency @​types/node to v16.18.73 (#1057)
  • Additional commits viewable in compare view

Updates reviewdog/action-eslint from 1.20 to 1.23

Release notes

Sourced from reviewdog/action-eslint's releases.

Release v1.23.0

What's Changed

Full Changelog: reviewdog/action-eslint@v1.22.0...v1.23.0

Release v1.22.0

What's Changed

Full Changelog: reviewdog/action-eslint@v1.21.0...v1.22.0

Release v1.21.0

What's Changed

Full Changelog: reviewdog/action-eslint@v1.20.0...v1.21.0

Commits
  • b3c5aa2 Merge pull request #192 from reviewdog/depup/reviewdog
  • 66fdf78 chore(deps): update reviewdog to 0.17.1
  • 5deb8e2 Merge pull request #190 from reviewdog/depup/reviewdog
  • e396476 chore(deps): update reviewdog to 0.17.0
  • 279acb0 Merge pull request #189 from reviewdog/depup/reviewdog
  • 82709c0 chore(deps): update reviewdog to 0.16.0
  • 3da78bb Merge pull request #185 from reviewdog/renovate/actions-setup-node-4.x
  • 073eef6 chore(deps): update actions/setup-node action to v4
  • b9ec757 Merge pull request #184 from reviewdog/renovate/js-devtools-npm-publish-3.x
  • 7152055 chore(deps): update js-devtools/npm-publish action to v3
  • See full diff in compare view

Updates reviewdog/action-stylelint from 1.18 to 1.22

Release notes

Sourced from reviewdog/action-stylelint's releases.

Release v1.22.0

What's Changed

Full Changelog: reviewdog/action-stylelint@v1.21.0...v1.22.0

Release v1.21.0

What's Changed

Full Changelog: reviewdog/action-stylelint@v1.20.2...v1.21.0

Release v1.20.2

What's Changed

Full Changelog: reviewdog/action-stylelint@v1.20.1...v1.20.2

Release v1.20.1

What's Changed

Full Changelog: reviewdog/action-stylelint@v1.20.0...v1.20.1

Release v1.20.0

What's Changed

Full Changelog: reviewdog/action-stylelint@v1.19.0...v1.20.0

Release v1.19.0

What's Changed

New Contributors

Full Changelog: reviewdog/action-stylelint@v1.18.1...v1.19.0

Release v1.18.1

What's Changed

... (truncated)

Commits
  • eadef3f Merge pull request #118 from davidcornu/david/check-stylelint-exit-code
  • fa1f186 Check the stylelint exit code before proceeding
  • 324e65f Merge pull request #117 from reviewdog/depup/reviewdog
  • 61b2eab chore(deps): update reviewdog to 0.17.1
  • 5a62a0c Merge pull request #115 from reviewdog/stylelint-format-message-text
  • 2a5cce8 Added formatMessageText from Stylelint source
  • a263144 Merge pull request #114 from reviewdog/stylelint-stderr-stdout
  • df6e28f Redirected Stylelint STDERR to STDOUT
  • 4a97984 Merge pull request #113 from reviewdog/stylelint-ruleMetadata-safe-nav
  • 095aa28 Added safe navigation to ruleMetadata due to it sometimes being undefined
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 15, 2024
@dependabot dependabot bot requested a review from a01sa01to April 15, 2024 02:00
Bumps the all group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `6` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4.0.1` | `4.0.2` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` |
| [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) | `3.9.3` | `4.0.0` |
| [reviewdog/action-eslint](https://github.com/reviewdog/action-eslint) | `1.20` | `1.23` |
| [reviewdog/action-stylelint](https://github.com/reviewdog/action-stylelint) | `1.18` | `1.22` |


Updates `peter-evans/create-pull-request` from 5 to 6
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](peter-evans/create-pull-request@v5...v6)

Updates `actions/setup-node` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4.0.1...v4.0.2)

Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

Updates `peaceiris/actions-gh-pages` from 3.9.3 to 4.0.0
- [Release notes](https://github.com/peaceiris/actions-gh-pages/releases)
- [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md)
- [Commits](peaceiris/actions-gh-pages@v3.9.3...v4.0.0)

Updates `reviewdog/action-eslint` from 1.20 to 1.23
- [Release notes](https://github.com/reviewdog/action-eslint/releases)
- [Commits](reviewdog/action-eslint@v1.20...v1.23)

Updates `reviewdog/action-stylelint` from 1.18 to 1.22
- [Release notes](https://github.com/reviewdog/action-stylelint/releases)
- [Commits](reviewdog/action-stylelint@v1.18...v1.22)

---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: peaceiris/actions-gh-pages
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: reviewdog/action-eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: reviewdog/action-stylelint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/github_actions/all-a798973843 branch from 27cb8b8 to 6c17127 Compare April 22, 2024 01:21
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 29, 2024

Superseded by #724.

@dependabot dependabot bot closed this Apr 29, 2024
@dependabot dependabot bot deleted the dependabot/github_actions/all-a798973843 branch April 29, 2024 01:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants