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

Rollup of 10 pull requests #123098

Merged
merged 21 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7f45f53
store segment and module in `UnresolvedImportError`
bvanjoi Mar 20, 2024
42526e1
simplify_branches: add comment
RalfJung Mar 24, 2024
08d7379
Use the correct span for simplifying or-patterns
Nadrieril Mar 5, 2024
70e1d23
CFI: Pad out associated type resolution with erased lifetimes
maurer Mar 25, 2024
d1d9aa3
Consistently merge simplifiable or-patterns
Nadrieril Mar 5, 2024
d0bf6e6
triagebot: Add notification of 2024 issues
ehuss Mar 25, 2024
22da5e0
Add my former address to .mailmap
kpreid Mar 26, 2024
a241ffc
Fix link to BufWriter
ding-young Mar 26, 2024
17c6101
Delegation: fix ICE on wrong `self` resolution
Bryanskiy Mar 22, 2024
3b94f33
Remove `CacheSelector` trait now that we can use GATs
oli-obk Mar 26, 2024
c2de5af
Revert `cargo update` changes
clubby789 Mar 26, 2024
03f5c4f
Rollup merge of #122766 - bvanjoi:fix-115185, r=petrochenkov
matthiaskrgr Mar 26, 2024
d549d4f
Rollup merge of #122996 - RalfJung:simplify_branches, r=cjgillot
matthiaskrgr Mar 26, 2024
6ecbc34
Rollup merge of #123047 - ehuss:triagebot-edition-2024, r=fmease
matthiaskrgr Mar 26, 2024
1fd3ee0
Rollup merge of #123066 - maurer:cfi-erased-lifetime-ice, r=compiler-…
matthiaskrgr Mar 26, 2024
94e8c6c
Rollup merge of #123067 - Nadrieril:always-simplify-or, r=oli-obk
matthiaskrgr Mar 26, 2024
17aabac
Rollup merge of #123069 - clubby789:un-often-cargo-update, r=Kobzol
matthiaskrgr Mar 26, 2024
9ea8f23
Rollup merge of #123070 - kpreid:patch-1, r=workingjubilee
matthiaskrgr Mar 26, 2024
a4bf722
Rollup merge of #123086 - ding-young:fix-ref-to-BufWriter, r=the8472
matthiaskrgr Mar 26, 2024
e7c983c
Rollup merge of #123090 - oli-obk:gatify, r=compiler-errors
matthiaskrgr Mar 26, 2024
4d1fb9e
Rollup merge of #123091 - Bryanskiy:delegation-fixes, r=petrochenkov
matthiaskrgr Mar 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 7 additions & 12 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
schedule:
# Run weekly
- cron: '0 0 * * Sun'
# Re-bump deps every 4 hours
- cron: '0 */4 * * *'
workflow_dispatch:
# Needed so we can run it manually
permissions:
Expand Down Expand Up @@ -42,7 +40,7 @@ jobs:

# Exit with error if open and S-waiting-on-bors
if [[ "$STATE" == "OPEN" && "$WAITING_ON_BORS" == "true" ]]; then
gh run cancel ${{ github.run_id }}
exit 1
fi

update:
Expand All @@ -65,10 +63,7 @@ jobs:

- name: cargo update
# Remove first line that always just says "Updating crates.io index"
# If there are no changes, cancel the job here
run: |
cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
git status --porcelain | grep -q Cargo.lock || gh run cancel ${{ github.run_id }}
run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
- name: upload Cargo.lock artifact for use in PR
uses: actions/upload-artifact@v4
with:
Expand All @@ -95,11 +90,11 @@ jobs:
uses: actions/checkout@v4

- name: download Cargo.lock from update job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Cargo-lock
- name: download cargo-update log from update job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cargo-updates

Expand Down Expand Up @@ -134,14 +129,14 @@ jobs:
# Exit with error if PR is closed
STATE=$(gh pr view cargo_update --repo $GITHUB_REPOSITORY --json state --jq '.state')
if [[ "$STATE" != "OPEN" ]]; then
gh run cancel ${{ github.run_id }}
exit 1
fi

gh pr edit cargo_update --title "${PR_TITLE}" --body-file body.md --repo $GITHUB_REPOSITORY

- name: open new pull request
# Only run if there wasn't an existing PR and if this is the weekly run
if: steps.edit.outcome != 'success' && github.event.schedule == '0 0 * * Sun'
# Only run if there wasn't an existing PR
if: steps.edit.outcome != 'success'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr create --title "${PR_TITLE}" --body-file body.md --repo $GITHUB_REPOSITORY
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ Katze <binary@benary.org>
Keegan McAllister <mcallister.keegan@gmail.com> <kmcallister@mozilla.com>
Kerem Kat <keremkat@gmail.com>
Kevin Butler <haqkrs@gmail.com>
Kevin Reid <kpreid@switchb.org> <kpreid@google.com>
Kevin Jiang <kwj2104@columbia.edu>
Kornel Lesiński <kornel@geekhood.net>
Krishna Sai Veera Reddy <veerareddy@email.arizona.edu>
Expand Down