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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
echo "export LIBCLANG_PATH=${MSYS2_LOCATION}/mingw64/bin" >> ~/.bash_profile
echo "export BINDGEN_EXTRA_CLANG_ARGS=--target=x86_64-w64-windows-gnu -isystem${MSYS2_LOCATION}/mingw64/include" >> ~/.bash_profile

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
- run: |
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
rustup default stable-x86_64-pc-windows-gnu

- name: Setup cache for x264
uses: actions/cache@v5
uses: actions/cache@v6
id: x264-cache
with:
path: ${{ matrix.x264-cache-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
- run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
run-id: ${{ github.event.workflow_run.id }}
pattern: ddnet-rs-*
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
done

- name: Remove old nightly releases (keep only tag 'nightly')
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand All @@ -74,7 +74,7 @@ jobs:
}

- name: Create Nightly release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: nightly
target_commitish: ${{ github.event.workflow_run.head_sha }}
Expand Down
2 changes: 1 addition & 1 deletion lib/graphics-base-traits/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl<'de> Deserialize<'de> for GraphicsStreamedUniformRawData {
}
}

/// only allows to get either of the memebers
/// only allows to get either of the members
#[derive(Debug, Hiarc, Serialize, Deserialize)]
pub struct GraphicsStreamedUniformData {
raw: GraphicsStreamedUniformRawData,
Expand Down
4 changes: 1 addition & 3 deletions lib/native/src/native/winit_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,9 +736,7 @@ impl WinitWrapper {
winit::event::WindowEvent::CursorEntered { device_id: _ } => {}
winit::event::WindowEvent::CursorLeft { device_id: _ } => {}
winit::event::WindowEvent::MouseWheel {
device_id,
delta,
..
device_id, delta, ..
} => native_user.as_mut().scroll(
&window.window,
&device_id,
Expand Down
Loading