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 dependencies #1513

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .changes/1513.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"description": "Update dependencies",
"type": "fixed"
}
2 changes: 1 addition & 1 deletion .github/actions/cargo-llvm-cov/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov@0.5.3
tool: cargo-llvm-cov@0.6.10
- run: rustup component add llvm-tools-preview
shell: bash
- name: LLVM instrument coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cargo-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:
github.ref == format('refs/heads/{0}', github.event.repository.default_branch) ||
startsWith(github.ref, 'refs/tags/v')
)
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ (github.ref_type == 'tag' && github.ref_name) || 'Unreleased' }}
body: ${{ steps.changelog-reader.outputs.changes }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/post/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ inputs:
description: 'Post command/script.'
required: true
runs:
using: 'node16'
using: 'node20'
main: 'main.js'
post: 'main.js'
32 changes: 32 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,35 @@ updates:
github_actions:
patterns:
- "*"
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
groups:
rust_dependencies:
patterns:
- "*"
- package-ecosystem: "cargo"
directory: "/xtask"
schedule:
interval: "weekly"
groups:
rust_dependencies:
patterns:
- "*"
Comment on lines +51 to +66
Copy link
Member

Choose a reason for hiding this comment

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

Would it be possible to only do a pr/update when a (cargo) semver break is done? e.g the first non-zero digit is changed. Reason is that I'm not sure we need to always be up to date, I can be persuaded about this though, I've just never seen the reason to keep track of the changes so closely.

Copy link
Member

Choose a reason for hiding this comment

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

Maybe changing it to be done monthly?

- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "weekly"
groups:
build_dependencies:
patterns:
- "*"
- package-ecosystem: "pip"
directory: "/docker/android"
schedule:
interval: "weekly"
groups:
python_dependencies:
patterns:
- "*"
Comment on lines +75 to +82
Copy link
Member

Choose a reason for hiding this comment

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

Ditto for this, I'd rather do this less often or only when a break happens.

Loading
Loading