Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/auto-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'

- name: Install dependencies
run: |
Expand All @@ -28,7 +28,7 @@ jobs:

- name: Generate Bootc Actions Token
id: bootc_token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autovendor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
vendor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- name: Install vendor tool
run: cargo install cargo-vendor-filterer
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install deps
run: ./ci/installdeps.sh
- name: Mark git checkout as safe
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
sudo apt install -y crun/testing podman/testing skopeo/testing
- name: Installdeps
run: sudo apt update && sudo apt install just
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build and run container integration tests
run: sudo just run-container-integration run-container-external-tests
container-continuous:
Expand All @@ -69,13 +69,13 @@ jobs:
sudo apt install -y crun/testing podman/testing skopeo/testing
- name: Installdeps
run: sudo apt update && sudo apt install just
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build with continuous repo enabled
run: sudo just build --build-arg=continuous_repo=1
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@v2
with:
log-level: warn
Expand All @@ -93,7 +93,7 @@ jobs:
sudo apt update
sudo apt install -y crun/testing podman/testing skopeo/testing
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Free up disk space on runner
run: sudo ./ci/clean-gha-runner.sh
- name: Enable fsverity for /
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.37
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install mdBook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.37
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install mdBook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Build with mdBook
run: cd docs && mdbook-mermaid install && mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./docs/book/html

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/labeler@v5
- uses: actions/checkout@v5
- uses: actions/labeler@v6
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand Down
8 changes: 3 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions crates/ostree-ext/.github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Code lints
run: ./ci/lints.sh
- name: Install deps
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Install deps
run: ./ci/installdeps.sh
- name: Cache Dependencies
Expand All @@ -67,7 +67,7 @@ jobs:
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Install deps
run: ./ci/installdeps.sh
- name: Detect crate MSRV
Expand All @@ -91,8 +91,8 @@ jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@v2
with:
log-level: warn
command: check bans sources licenses
Expand All @@ -103,9 +103,9 @@ jobs:
container: quay.io/fedora/fedora-coreos:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Download ostree-ext-cli
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v5.0.0
with:
name: ostree-ext-cli
- name: Install
Expand All @@ -119,9 +119,9 @@ jobs:
container: quay.io/fedora/fedora-coreos:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Download ostree-ext-cli
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v5.0.0
with:
name: ostree-ext-cli
- name: Install
Expand All @@ -133,13 +133,13 @@ jobs:
needs: build
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora-bootc:41
image: quay.io/fedora/fedora-bootc:44
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will make a PR tomorrow to ignore dependency updates to this one too. Renovate struggles with Fedora versions

options: "--privileged --pid=host -v /var/tmp:/var/tmp -v /run/dbus:/run/dbus -v /run/systemd:/run/systemd -v /:/run/host"
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v5.0.0
with:
name: ostree-ext-cli
- name: Install
Expand All @@ -152,14 +152,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Checkout coreos-layering-examples
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
repository: coreos/coreos-layering-examples
path: coreos-layering-examples
- name: Download
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v5.0.0
with:
name: ostree-ext-cli
- name: Integration tests
Expand Down
2 changes: 1 addition & 1 deletion crates/ostree-ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ tokio-stream = { features = ["sync"], version = "0.1.8" }
zstd = { version = "0.13.1", features = ["pkg-config"] }

[dev-dependencies]
quickcheck = "1"
quickcheck = "=1.0.3"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be prevented after #1591

# https://github.com/rust-lang/cargo/issues/2911
# https://github.com/rust-lang/rfcs/pull/1956
ostree-ext = { path = ".", features = ["internal-testing-api"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/system-reinstall-bootc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ uzers = { workspace = true }

# Crate-specific dependencies
crossterm = "0.29.0"
dialoguer = "0.11.0"
dialoguer = "0.12.0"
openssh-keys = "0.6.4"
serde_yaml = "0.9.22"
which = "8.0.0"
Expand Down
Loading