Skip to content

Commit b083556

Browse files
authored
chore(deps): Update deps (#195)
2 parents 2bdb4e4 + a01aa38 commit b083556

File tree

6 files changed

+115
-111
lines changed

6 files changed

+115
-111
lines changed

.github/workflows/check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
name: stable / format
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
submodules: true
1717
- name: Install stable
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
toolchain: [stable, beta]
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
submodules: true
3737
- name: Install ${{ matrix.toolchain }}

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- uses: actions-rs/toolchain@v1
2020
with:
2121
toolchain: stable
@@ -25,7 +25,7 @@ jobs:
2525
cargo doc --all --no-deps
2626
mv target/doc/mod_installer target/doc/rust_docs
2727
- name: Upload artifact
28-
uses: actions/upload-pages-artifact@v3
28+
uses: actions/upload-pages-artifact@v4
2929
with:
3030
path: target/doc
3131
- name: Deploy to GitHub Pages

.github/workflows/main.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pre-commit:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
set-safe-directory: true
2121
fetch-depth: 0
@@ -39,7 +39,7 @@ jobs:
3939
target: x86_64-pc-windows-msvc
4040
suffix: .exe
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- uses: actions-rs/toolchain@v1
4444
with:
4545
toolchain: stable
@@ -55,7 +55,7 @@ jobs:
5555
build-nix:
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
- uses: cachix/install-nix-action@v31
6060
with:
6161
nix_path: nixpkgs=channel:nixos-25.05
@@ -69,7 +69,7 @@ jobs:
6969
tag_name: ${{ steps.get_tag.outputs.git_tag }}
7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7373
with:
7474
fetch-depth: 0
7575
- name: Generate a changelog
@@ -108,7 +108,7 @@ jobs:
108108
suffix: .exe
109109
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
110110
steps:
111-
- uses: actions/download-artifact@v4
111+
- uses: actions/download-artifact@v5
112112
with:
113113
name: mod_installer-${{ matrix.target }}${{ matrix.suffix }}
114114
- name: Upload Release Asset - ${{ matrix.os }}

.github/workflows/safety.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: "Miri"
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Install Miri
2020
run: |
2121
rustup toolchain install nightly --component miri

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
default_install_hook_types: [pre-commit, commit-msg]
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v5.0.0
4+
rev: v6.0.0
55
hooks:
66
- id: check-added-large-files
77
exclude: (?x)^(docs)

0 commit comments

Comments
 (0)