Skip to content

Commit 00ced16

Browse files
Merge branch 'main' into tune-docker
2 parents b470ba6 + 31a167d commit 00ced16

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
tag: [cli, default]
2626
steps:
2727
- uses: actions/checkout@v4
28-
- uses: actions/cache@v3
28+
- uses: actions/cache@v4
2929
with:
3030
path: |
3131
~/.cargo/bin/
@@ -56,7 +56,7 @@ jobs:
5656
toolchain: nightly
5757
override: true
5858
components: rustfmt, clippy
59-
- uses: actions/cache@v3
59+
- uses: actions/cache@v4
6060
with:
6161
path: |
6262
~/.cargo/bin/

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
assign-author:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: toshimaru/auto-author-assign@v1.6.2
36+
- uses: toshimaru/auto-author-assign@v2.1.1
3737

3838
clippy:
3939
runs-on: ubuntu-latest

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
toolchain: stable
7272
override: true
73-
- uses: actions/cache@v3
73+
- uses: actions/cache@v4
7474
with:
7575
path: |
7676
~/.cargo/bin/

Cargo.lock

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ clap = { version = "4.5.4", features = ["derive", "env", "string"] }
1919
futures = "0.3.30"
2020
regex = "1.10.5"
2121
serde = { version = "1.0.201", features = ["derive"] }
22-
serde_json = "1.0.116"
22+
serde_json = "1.0.121"
2323
serde_yaml = "0.9.34"
2424
tokio = { version = "1.37.0", features = ["full"] }
2525

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
FROM rust:1.77-alpine as builder
1+
FROM rust:1.80-alpine as builder
22
WORKDIR /app
33

44
RUN --mount=type=cache,target=/var/cache/apk,sharing=locked \
55
apk update \
66
&& apk add --no-cache musl-dev
77

88
COPY . .
9-
109
RUN cargo install --path .
1110

1211
FROM alpine

web/src/content/docs/config/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Commitlint can be configured in many ways. You can use the default configuration
99

1010
If you don't specify any configuration file and you don't have any commitlint configuration files in your environment, the CLI will use the default configurations of each rules.
1111

12-
See the [default rules](/rules/default) page for details.
12+
See the [default rules](/commitlint-rs/config/default) page for details.
1313

1414
## Location
1515

0 commit comments

Comments
 (0)