Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
env:
HOST_TARGET: ${{ matrix.host_target }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: install multiarch
if: ${{ matrix.multiarch != '' }}
run: |
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
name: style checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/workflows/setup

- name: rustfmt
Expand All @@ -121,7 +121,7 @@ jobs:
name: bootstrap build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# Deliberately skipping `./.github/workflows/setup` as we do our own setup
- name: Add cache for cargo
id: cache
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
name: coverage report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/workflows/setup
- name: coverage
run: ./miri test --coverage
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
pull-requests: write
if: ${{ github.event_name == 'schedule' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 256 # get a bit more of the history
- name: install josh-sync
Expand All @@ -205,7 +205,7 @@ jobs:
- name: Install rustup-toolchain-install-master
run: cargo install -f rustup-toolchain-install-master
# Create a token for the next step so it can create a PR that actually runs CI.
- uses: actions/create-github-app-token@v2
- uses: actions/create-github-app-token@v3
Comment thread
RalfJung marked this conversation as resolved.
id: app-token
with:
app-id: ${{ vars.APP_CLIENT_ID }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sysroots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build the sysroots
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build the sysroots
run: |
rustup toolchain install nightly
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Upload build errors
# We don't want to skip this step on failure
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: failures
path: failures.tar.gz
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
# Download our build error logs
- name: Download build errors
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: failures
# Send a Zulip notification
Expand Down