Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,19 +192,19 @@ jobs:

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ github.repository }}

- name: Log in to Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Identify Buildx container
run: |
CONTAINER_ID=$(docker ps --filter=ancestor=moby/buildkit:buildx-stable-1 --format='{{ .ID }}')
Expand All @@ -221,7 +221,7 @@ jobs:
docker buildx du # Check the restored cache

- name: Build image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: crates/term-transcript-cli/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ portable-pty = "0.8.1" # FIXME: portable-pty 0.9 is seemingly broken on Windows
# won't build without `alloc` (or `std`) enabled.
pretty_assertions = { version = "1.4.1", default-features = false, features = ["alloc"] }
pulldown-cmark = "0.9.6"
quick-xml = "0.39.2"
quick-xml = "0.40.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.27.0"
Expand Down
Loading