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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 0 # for lastUpdated
- uses: jdx/mise-action@dba19683ed58901619b14f395a24841710cb4925 # v4
- uses: jdx/mise-action@e6a8b3978addb5a52f2b4cd9d91eafa7f0ab959d # v4
with:
install_args: bun
- run: mise x wait-for-gh-rate-limit -- wait-for-gh-rate-limit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
jobs:
bump-alpine:
runs-on: ubuntu-latest
container: ghcr.io/jdx/mise:alpine@sha256:121893007815818d15e23a028781fa783cda9b29fe9e92ce4029035554949d97
container: ghcr.io/jdx/mise:alpine@sha256:892c3241f890205079a0d583c00681ee8e92b1d0fc7ff39602d59670a8437b16
timeout-minutes: 60
if: |
(github.event_name == 'release' &&
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-tarball-linux]
timeout-minutes: 10
container: ghcr.io/jdx/mise:rpm@sha256:59079988d16b0ab72b0a0776db9110270fafa35728c0d1ec539fea64b5096480
container: ghcr.io/jdx/mise:rpm@sha256:b5e0574388921ae2f9f454ae694b52cff84df54320bd2cc41a91e45485818550
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7
Expand All @@ -202,7 +202,7 @@ jobs:
if: github.event_name != 'pull_request' || github.head_ref == 'release'
runs-on: ubuntu-latest
needs: [build-tarball-linux]
container: ghcr.io/jdx/mise:deb@sha256:5b1ef5e0843910c9fa12e970f25c3118b0600af1cfc3d708ab3ca92c6025300a
container: ghcr.io/jdx/mise:deb@sha256:3d636fabbf99265e36b0da777d5fcc4a1cff6ce76fec5b7d5e164f87172364c1
timeout-minutes: 10
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
Expand Down
56 changes: 28 additions & 28 deletions bun.lock

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"author": "@jdx",
"resolutions": {
"esbuild": "0.28.0"
"esbuild": "0.28.1"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packaging/deb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:26.04@sha256:f3d28607ddd78734bb7f71f117f3c6706c666b8b76cbff7c9ff6e5718d46ff64
FROM ubuntu:26.04@sha256:e153663f92c94118ff22a5dc397b59b351ffd695480566debb5850e017e5937a
LABEL maintainer="jdx"

RUN apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions packaging/mise/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
FROM rust@sha256:4fd8406017c992f7b8ab55a2f99a1d56aeb1d7ecd255850dfa04239a88601f73 AS builder
FROM rust@sha256:c6811167278337db5f3b0234964ced5f538f154a2a20f09ec03721d7411c933d AS builder
LABEL maintainer="jdx"
LABEL org.opencontainers.image.source=https://github.com/jdx/mise
LABEL org.opencontainers.image.description="mise is a tool for managing your development environment"
Expand All @@ -9,7 +9,7 @@ WORKDIR /usr/src/mise
COPY . /usr/src/mise/
RUN cargo build --release

FROM rust@sha256:4fd8406017c992f7b8ab55a2f99a1d56aeb1d7ecd255850dfa04239a88601f73 AS runtime
FROM rust@sha256:c6811167278337db5f3b0234964ced5f538f154a2a20f09ec03721d7411c933d AS runtime

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV MISE_DATA_DIR="/mise"
Expand Down
Loading