Skip to content
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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Pin to 1.91 until winit 0.30 is compatible with Rust 1.92+
# (https://github.com/rust-windowing/winit/issues/4486)
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
name: Validate GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check docs/index.html exists
run: test -f docs/index.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Code Coverage
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Pin to 1.91 until winit 0.30 is compatible with Rust 1.92+
# (https://github.com/rust-windowing/winit/issues/4486)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
features: ""
artifact: murmur-windows-x86_64
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Download all artifacts
uses: actions/download-artifact@v8
Expand Down
Loading