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 action-dependencies group with 8 updates #7

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the action-dependencies group with 8 updates:

Package From To
actions/upload-artifact 4.4.0 4.6.0
dwenegar/upload-release-assets 1 3
peter-evans/create-pull-request 7.0.5 7.0.6
hendrikmuhs/ccache-action 1.2.14 1.2.16
sarisia/actions-status-discord 1.14.7 1.15.1
ncipollo/release-action 1.14.0 1.15.0
dawidd6/action-download-artifact 2.26.0 3.1.4
eregon/publish-release 1.0.5 1.0.6

Updates actions/upload-artifact from 4.4.0 to 4.6.0

Release notes

Sourced from actions/upload-artifact's releases.

v4.6.0

What's Changed

Full Changelog: actions/upload-artifact@v4...v4.6.0

v4.5.0

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v4.4.3...v4.5.0

v4.4.3

What's Changed

Full Changelog: actions/upload-artifact@v4.4.2...v4.4.3

v4.4.2

What's Changed

Full Changelog: actions/upload-artifact@v4.4.1...v4.4.2

v4.4.1

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v4.4.0...v4.4.1

Commits
  • 65c4c4a Merge pull request #662 from actions/yacaovsnc/add_variable_for_concurrency_a...
  • 0207619 move files back to satisfy licensed ci
  • 1ecca81 licensed cache updates
  • 9742269 Expose env vars to controll concurrency and timeout
  • 6f51ac0 Merge pull request #656 from bdehamer/bdehamer/artifact-digest
  • c40c16d add new artifact-digest output
  • 735efb4 bump @​actions/artifact from 2.1.11 to 2.2.0
  • 184d73b Merge pull request #578 from hamirmahal/fix/deprecated-nodejs-usage-in-action
  • b4a0a98 Merge branch 'main' into fix/deprecated-nodejs-usage-in-action
  • b4b15b8 Merge pull request #632 from actions/joshmgross/undo-dependency-changes
  • Additional commits viewable in compare view

Updates dwenegar/upload-release-assets from 1 to 3

Commits

Updates peter-evans/create-pull-request from 7.0.5 to 7.0.6

Release notes

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

Create Pull Request v7.0.6

⚙️ Fixes an issue with commit signing where unicode characters in file paths were not preserved.

What's Changed

New Contributors

... (truncated)

Commits
  • 67ccf78 fix: preserve unicode in filepaths when commit signing (#3588)
  • bb88e27 build: update distribution (#3583)
  • b378ed5 build(deps): bump p-limit from 6.1.0 to 6.2.0 (#3578)
  • fa9200e build(deps-dev): bump @​types/node from 18.19.67 to 18.19.68 (#3570)
  • 16e0059 build(deps-dev): bump prettier from 3.4.1 to 3.4.2 (#3560)
  • 5bffd5a build(deps-dev): bump eslint-import-resolver-typescript (#3559)
  • a22a0dd build(deps-dev): bump prettier from 3.4.0 to 3.4.1 (#3544)
  • b27ce37 build(deps-dev): bump @​types/node from 18.19.66 to 18.19.67 (#3543)
  • 4e0cc19 build(deps): bump @​octokit/plugin-paginate-rest from 11.3.5 to 11.3.6 (#3542)
  • 25b6871 docs: update scopes for push-to-fork
  • Additional commits viewable in compare view

Updates hendrikmuhs/ccache-action from 1.2.14 to 1.2.16

Release notes

Sourced from hendrikmuhs/ccache-action's releases.

v1.2.16

What's Changed

New Contributors

Full Changelog: hendrikmuhs/ccache-action@v1...v1.2.16

Commits

Updates sarisia/actions-status-discord from 1.14.7 to 1.15.1

Release notes

Sourced from sarisia/actions-status-discord's releases.

v1.15.1

What's Changed

  • Test against macos-15
  • Update dependencies

Full Changelog: sarisia/actions-status-discord@v1.15.0-src...v1.15.1-src

v1.15.1-pre.1

No release notes provided.

v1.15.1-pre.0

No release notes provided.

v1.15.0

What's Changed

  • You can now get Discord embed payload json as action output like:

    - uses: sarisia/actions-status-discord@v1
      if: always()
      id: webhook # set id to reference output payload later
      with:
        ack_no_webhook: true # set this to suppress warning
        # you can omit webhook input (or DISCORD_WEBHOOK environment variable)
    
    
    run: npm install axios
    
    
    uses: actions/github-script@v7
    env:
    WEBHOOK_PAYLOAD: ${{ steps.webhook.outputs.payload }}
    WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK }}
    with:
    script: |
    const axios = require("axios")
    const { WEBHOOK_PAYLOAD, WEBHOOK_URL } = process.env
    const payload = JSON.parse(WEBHOOK_PAYLOAD)
    // modify payload as you like
    delete payload.embeds[0].color
    
    
    

... (truncated)

Commits
  • 65843b6 Automatic build
  • ac3f7e2 add macos-15 as test target
  • cde5807 chore(deps): bump the nodejs group across 1 directory with 7 updates (#558)
  • 9af99c3 chore(deps): bump the github-actions group across 1 directory with 3 updates ...
  • c11644e chore(deps): bump the github-actions group with 2 updates (#552)
  • 6d7758c chore(deps): bump the nodejs group with 4 updates (#551)
  • 2a2cb30 add payload output (#549)
  • See full diff in compare view

Updates ncipollo/release-action from 1.14.0 to 1.15.0

Release notes

Sourced from ncipollo/release-action's releases.

v1.15.0

What's Changed

Add more explicit error when release list API call fails.

TLDR below - many dependency updates.

New Contributors

... (truncated)

Commits

Updates dawidd6/action-download-artifact from 2.26.0 to 3.1.4

Release notes

Sourced from dawidd6/action-download-artifact's releases.

v3.1.4

What's Changed

New Contributors

Full Changelog: dawidd6/action-download-artifact@v3...v3.1.4

v3.1.3

What's Changed

Full Changelog: dawidd6/action-download-artifact@v3.1.2...v3.1.3

v3.1.2

What's Changed

New Contributors

Full Changelog: dawidd6/action-download-artifact@v3.1.1...v3.1.2

v3.1.1

What's Changed

Full Changelog: dawidd6/action-download-artifact@v3...v3.1.1

v3.1.0

What's Changed

New Contributors

Full Changelog: dawidd6/action-download-artifact@v3...v3.1.0

v3.0.0

Node was updated from 16 to 20.

... (truncated)

Commits
  • 09f2f74 fix: accept expired artifacts with documentation url (#283)
  • 4a559ba build(deps): bump @​actions/artifact from 2.1.2 to 2.1.4 (#280)
  • ffef66c build(deps): bump adm-zip from 0.5.10 to 0.5.12 (#282)
  • a430ac5 build(deps): bump @​actions/artifact from 2.1.1 to 2.1.2 (#277)
  • 0a65e25 node_modules: upgrade (#276)
  • 71072fb Read workflow_search input as a boolean (#273)
  • 72aaadc build(deps): bump undici from 5.28.2 to 5.28.3 (#272)
  • e454ec2 Head sha revert (#271)
  • f6b0bac Optionally search for workflows (#270)
  • a07e1dd build(deps): bump @​actions/artifact from 2.0.1 to 2.1.1 (#269)
  • Additional commits viewable in compare view

Updates eregon/publish-release from 1.0.5 to 1.0.6

Commits

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

Bumps the action-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.0` | `4.6.0` |
| [dwenegar/upload-release-assets](https://github.com/dwenegar/upload-release-assets) | `1` | `3` |
| [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7.0.5` | `7.0.6` |
| [hendrikmuhs/ccache-action](https://github.com/hendrikmuhs/ccache-action) | `1.2.14` | `1.2.16` |
| [sarisia/actions-status-discord](https://github.com/sarisia/actions-status-discord) | `1.14.7` | `1.15.1` |
| [ncipollo/release-action](https://github.com/ncipollo/release-action) | `1.14.0` | `1.15.0` |
| [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) | `2.26.0` | `3.1.4` |
| [eregon/publish-release](https://github.com/eregon/publish-release) | `1.0.5` | `1.0.6` |


Updates `actions/upload-artifact` from 4.4.0 to 4.6.0
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@5076954...65c4c4a)

Updates `dwenegar/upload-release-assets` from 1 to 3
- [Release notes](https://github.com/dwenegar/upload-release-assets/releases)
- [Commits](dwenegar/upload-release-assets@5bc3024...fe47e06)

Updates `peter-evans/create-pull-request` from 7.0.5 to 7.0.6
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](peter-evans/create-pull-request@5e91468...67ccf78)

Updates `hendrikmuhs/ccache-action` from 1.2.14 to 1.2.16
- [Release notes](https://github.com/hendrikmuhs/ccache-action/releases)
- [Commits](hendrikmuhs/ccache-action@ed74d11...5391144)

Updates `sarisia/actions-status-discord` from 1.14.7 to 1.15.1
- [Release notes](https://github.com/sarisia/actions-status-discord/releases)
- [Commits](sarisia/actions-status-discord@ce8cc68...65843b6)

Updates `ncipollo/release-action` from 1.14.0 to 1.15.0
- [Release notes](https://github.com/ncipollo/release-action/releases)
- [Commits](ncipollo/release-action@2c591bc...cdcc88a)

Updates `dawidd6/action-download-artifact` from 2.26.0 to 3.1.4
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](dawidd6/action-download-artifact@5e780fc...09f2f74)

Updates `eregon/publish-release` from 1.0.5 to 1.0.6
- [Release notes](https://github.com/eregon/publish-release/releases)
- [Commits](eregon/publish-release@46913fa...01df127)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: action-dependencies
- dependency-name: dwenegar/upload-release-assets
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: action-dependencies
- dependency-name: peter-evans/create-pull-request
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: action-dependencies
- dependency-name: hendrikmuhs/ccache-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: action-dependencies
- dependency-name: sarisia/actions-status-discord
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: action-dependencies
- dependency-name: ncipollo/release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: action-dependencies
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: action-dependencies
- dependency-name: eregon/publish-release
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: action-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 13, 2025
Copy link
Author

dependabot bot commented on behalf of github Jan 14, 2025

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this Jan 14, 2025
@dependabot dependabot bot deleted the dependabot/github_actions/action-dependencies-4316468622 branch January 14, 2025 19:59
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