diff --git a/.github/workflows/cache-upload.yml b/.github/workflows/cache-upload.yml index be488dfb369..e19d23e9315 100644 --- a/.github/workflows/cache-upload.yml +++ b/.github/workflows/cache-upload.yml @@ -48,7 +48,7 @@ jobs: sudo mv ./dist/devbox /usr/local/bin/ # - name: Install devbox - # uses: jetify-com/devbox-install-action@v0.13.0 + # uses: jetify-com/devbox-install-action@v0.14.0 # with: # enable-cache: true diff --git a/docs/app/docs/continuous_integration/github_action.md b/docs/app/docs/continuous_integration/github_action.md index ea90c9cbb86..11e51d855a3 100644 --- a/docs/app/docs/continuous_integration/github_action.md +++ b/docs/app/docs/continuous_integration/github_action.md @@ -14,7 +14,7 @@ In your project's workflow YAML, add the following step: ```yaml - name: Install devbox - uses: jetify-com/devbox-install-action@v0.13.0 + uses: jetify-com/devbox-install-action@v0.14.0 ``` ## Example Workflow @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v4 - name: Install devbox - uses: jetify-com/devbox-install-action@v0.13.0 + uses: jetify-com/devbox-install-action@v0.14.0 - name: Run arbitrary commands run: devbox run -- echo "done!"