Skip to content

Commit 01432bc

Browse files
fix(deps): update all dependencies
Signed-off-by: Platform Engineering Bot <[email protected]>
1 parent 79cc6b4 commit 01432bc

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

.github/workflows/udpate-generated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636

3737
- name: 'Create Pull Request'
38-
uses: peter-evans/create-pull-request@v6
38+
uses: peter-evans/create-pull-request@v7
3939
with:
4040
token: ${{ secrets.GITHUB_TOKEN }}
4141
commit-message: 'chore: Update generated files'

blockdev/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ serde_json = { workspace = true }
1919
tracing = { workspace = true }
2020

2121
[dev-dependencies]
22-
indoc = "2.0.5"
22+
indoc = "=2.0.5"
2323

2424
[lib]
2525
path = "src/blockdev.rs"

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ linkme = "0.3"
4141
openssl = { workspace = true }
4242
regex = "1.10.4"
4343
rustix = { workspace = true }
44-
schemars = { version = "0.8.17", features = ["chrono"] }
44+
schemars = { version = "1.0.0", features = ["chrono"] }
4545
serde = { workspace = true, features = ["derive"] }
4646
serde_ignored = "0.1.10"
4747
serde_json = { workspace = true }

mount/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ serde = { workspace = true, features = ["derive"] }
1919
tracing = { workspace = true }
2020

2121
[dev-dependencies]
22-
indoc = "2.0.5"
22+
indoc = "=2.0.5"
2323

2424
[lib]
2525
path = "src/mount.rs"

ostree-ext/.github/workflows/rust.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Code lints
2626
run: ./ci/lints.sh
2727
- name: Install deps
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
- name: Install deps
5252
run: ./ci/installdeps.sh
5353
- name: Cache Dependencies
@@ -67,7 +67,7 @@ jobs:
6767
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@v3
70+
uses: actions/checkout@v4
7171
- name: Install deps
7272
run: ./ci/installdeps.sh
7373
- name: Detect crate MSRV
@@ -91,8 +91,8 @@ jobs:
9191
cargo-deny:
9292
runs-on: ubuntu-latest
9393
steps:
94-
- uses: actions/checkout@v3
95-
- uses: EmbarkStudios/cargo-deny-action@v1
94+
- uses: actions/checkout@v4
95+
- uses: EmbarkStudios/cargo-deny-action@v2
9696
with:
9797
log-level: warn
9898
command: check bans sources licenses
@@ -103,9 +103,9 @@ jobs:
103103
container: quay.io/fedora/fedora-coreos:testing-devel
104104
steps:
105105
- name: Checkout repository
106-
uses: actions/checkout@v3
106+
uses: actions/checkout@v4
107107
- name: Download ostree-ext-cli
108-
uses: actions/download-artifact@v4.1.8
108+
uses: actions/download-artifact@v4.3.0
109109
with:
110110
name: ostree-ext-cli
111111
- name: Install
@@ -119,9 +119,9 @@ jobs:
119119
container: quay.io/fedora/fedora-coreos:testing-devel
120120
steps:
121121
- name: Checkout repository
122-
uses: actions/checkout@v3
122+
uses: actions/checkout@v4
123123
- name: Download ostree-ext-cli
124-
uses: actions/download-artifact@v4.1.8
124+
uses: actions/download-artifact@v4.3.0
125125
with:
126126
name: ostree-ext-cli
127127
- name: Install
@@ -133,13 +133,13 @@ jobs:
133133
needs: build
134134
runs-on: ubuntu-latest
135135
container:
136-
image: quay.io/fedora/fedora-bootc:41
136+
image: quay.io/fedora/fedora-bootc:43
137137
options: "--privileged --pid=host -v /var/tmp:/var/tmp -v /run/dbus:/run/dbus -v /run/systemd:/run/systemd -v /:/run/host"
138138
steps:
139139
- name: Checkout repository
140140
uses: actions/checkout@v4
141141
- name: Download
142-
uses: actions/download-artifact@v4.1.8
142+
uses: actions/download-artifact@v4.3.0
143143
with:
144144
name: ostree-ext-cli
145145
- name: Install
@@ -152,14 +152,14 @@ jobs:
152152
runs-on: ubuntu-latest
153153
steps:
154154
- name: Checkout repository
155-
uses: actions/checkout@v3
155+
uses: actions/checkout@v4
156156
- name: Checkout coreos-layering-examples
157-
uses: actions/checkout@v3
157+
uses: actions/checkout@v4
158158
with:
159159
repository: coreos/coreos-layering-examples
160160
path: coreos-layering-examples
161161
- name: Download
162-
uses: actions/download-artifact@v4.1.8
162+
uses: actions/download-artifact@v4.3.0
163163
with:
164164
name: ostree-ext-cli
165165
- name: Integration tests

ostree-ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ similar-asserts = { version = "1.5.0", optional = true }
5454
canon-json = { workspace = true }
5555

5656
[dev-dependencies]
57-
quickcheck = "1"
57+
quickcheck = "=1.0.3"
5858
# https://github.com/rust-lang/cargo/issues/2911
5959
# https://github.com/rust-lang/rfcs/pull/1956
6060
ostree-ext = { path = ".", features = ["internal-testing-api"] }

system-reinstall-bootc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde_yaml = "0.9.22"
3131
tempfile = { workspace = true }
3232
tracing = { workspace = true }
3333
uzers = "0.12.1"
34-
which = "7.0.2"
34+
which = "8.0.0"
3535

3636
[lints]
3737
workspace = true

tests-integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn-error-context = { workspace = true }
1919
indoc = { workspace = true }
2020
libtest-mimic = "0.8.0"
2121
oci-spec = "0.8.0"
22-
rexpect = "0.5"
22+
rexpect = "0.6"
2323
rustix = { workspace = true }
2424
serde = { workspace = true, features = ["derive"] }
2525
serde_json = { workspace = true }

xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn-error-context = { workspace = true }
1919
tar = "0.4"
2020
toml = "0.8"
2121
tempfile = { workspace = true }
22-
mandown = "0.1.3"
22+
mandown = "1.0.0"
2323
xshell = { version = "0.2.6" }
2424

2525
[lints]

0 commit comments

Comments
 (0)