Skip to content

Commit 7cd407f

Browse files
committed
Hopefully fix all CI issues
1 parent 4d59b78 commit 7cd407f

33 files changed

+49
-54
lines changed

.github/workflows/md_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Lint md files
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@main
1313

1414
- name: Lint markdown files
1515
uses: articulate/[email protected]

.github/workflows/publish_crate.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Checkout reposistory
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@main
1313

1414
- name: Setup Rust toolchain
1515
uses: actions-rs/toolchain@v1
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout reposistory
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@main
3030

3131
- name: Setup Rust toolchain
3232
uses: actions-rs/toolchain@v1
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout reposistory
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@main
4848

4949
- name: Setup MSRV checker
5050
uses: taiki-e/install-action@cargo-hack
@@ -95,7 +95,7 @@ jobs:
9595

9696
steps:
9797
- name: Checkout repo
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@main
9999

100100
- name: Setup Rust toolchain
101101
uses: dtolnay/rust-toolchain@stable
@@ -129,7 +129,7 @@ jobs:
129129
cd package && tar -czf ../slinky-cli-${{ matrix.builder.target }}.tar.gz *
130130
131131
- name: Upload .tar.gz artifact
132-
uses: actions/upload-artifact@v3
132+
uses: actions/upload-artifact@main
133133
with:
134134
name: slinky-cli-${{ matrix.builder.target }}
135135
path: |
@@ -149,7 +149,7 @@ jobs:
149149

150150
steps:
151151
- name: Checkout reposistory
152-
uses: actions/checkout@v4
152+
uses: actions/checkout@main
153153

154154
- name: Setup Rust toolchain
155155
uses: actions-rs/toolchain@v1

.markdownlint.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// https://github.com/DavidAnson/markdownlint/blob/main/doc/md013.md
99
// MD013 - Line length
1010
"MD013": {
11-
"code_block_line_length": 120,
11+
"code_block_line_length": 140,
1212
"headings": false
1313
}
1414
}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: © 2024 decompals
1+
# SPDX-FileCopyrightText: © 2024-2026 decompals
22
# SPDX-License-Identifier: MIT
33

44
[workspace]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ extra shiftability features not present on other tools.
100100

101101
### Planned features
102102

103-
All the planned features are added to the issue tracker. A full list can be seen
104-
[here](https://github.com/decompals/slinky/issues?q=is%3Aopen+is%3Aissue+label%3A%22planned+feature%22)
103+
All the planned features are added to the issue tracker.
104+
[Click here is the full list](https://github.com/decompals/slinky/issues?q=is%3Aopen+is%3Aissue+label%3A%22planned+feature%22).
105105

106106
## Installing
107107

slinky-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# SPDX-FileCopyrightText: © 2024 decompals
1+
# SPDX-FileCopyrightText: © 2024-2026 decompals
22
# SPDX-License-Identifier: MIT
33

44
[package]
55
name = "slinky-cli"
66
version = "0.3.1-dev0"
77
edition = "2021"
8-
rust-version = "1.74.1"
8+
rust-version = "1.74.0"
99
authors = ["Anghelo Carvajal <[email protected]>"]
1010
license = "MIT"
1111
description = "Linker script generator for decompilation and modding projects"

slinky-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* SPDX-FileCopyrightText: © 2024 decompals */
1+
/* SPDX-FileCopyrightText: © 2024-2026 decompals */
22
/* SPDX-License-Identifier: MIT */
33

44
use std::{error::Error, path::PathBuf};

slinky/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# SPDX-FileCopyrightText: © 2024 decompals
1+
# SPDX-FileCopyrightText: © 2024-2026 decompals
22
# SPDX-License-Identifier: MIT
33

44
[package]
55
name = "slinky"
66
version = "0.3.1-dev0"
77
edition = "2021"
8-
rust-version = "1.66.1"
8+
rust-version = "1.66.0"
99
authors = ["Anghelo Carvajal <[email protected]>"]
1010
license = "MIT"
1111
description = "Linker script generator for decompilation and modding projects"
@@ -15,7 +15,7 @@ keywords = ["linker_script", "generator", "decompilation"]
1515
categories = ["development-tools::build-utils"]
1616

1717
[dependencies]
18-
serde = {version="1.0.197", features = ["derive"]}
18+
serde = { version = "1", features = ["derive"] }
1919
serde_yaml = "0.9.32"
2020
thiserror = "1.0.57"
2121
indexmap = "2.2.6"

slinky/src/absent_nullable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* SPDX-FileCopyrightText: © 2024 decompals */
1+
/* SPDX-FileCopyrightText: © 2024-2026 decompals */
22
/* SPDX-License-Identifier: MIT */
33

44
use serde::{Deserialize, Deserializer};

slinky/src/assert_entry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* SPDX-FileCopyrightText: © 2024 decompals */
1+
/* SPDX-FileCopyrightText: © 2024-2026 decompals */
22
/* SPDX-License-Identifier: MIT */
33

44
use serde::Deserialize;

0 commit comments

Comments
 (0)