Skip to content

Commit 77990f6

Browse files
chore(deps): bump the dependencies group with 2 updates (#80)
* chore(deps): bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [lsp-types](https://github.com/gluon-lang/lsp-types) and [criterion](https://github.com/criterion-rs/criterion.rs). Updates `lsp-types` from 0.94.1 to 0.97.0 - [Changelog](https://github.com/gluon-lang/lsp-types/blob/master/CHANGELOG.md) - [Commits](gluon-lang/lsp-types@v0.94.1...v0.97.0) Updates `criterion` from 0.5.1 to 0.8.2 - [Release notes](https://github.com/criterion-rs/criterion.rs/releases) - [Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md) - [Commits](criterion-rs/criterion.rs@0.5.1...criterion-v0.8.2) --- updated-dependencies: - dependency-name: lsp-types dependency-version: 0.97.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-version: 0.8.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * fix: explicit url dependency for lsp-types 0.97 compatibility * fix: revert lsp-types to 0.94.1 and split CI build/init steps - Revert lsp-types from 0.97.0 to 0.94.1 (breaking API changes: Url→Uri) - Remove explicit url crate dependency - Split 'Build & Initialize' step into 'Build Dev Container' and 'Initialize' - Keep criterion upgrade to 0.8 * refactor(ci): separate Build Dev Container and Cargo Build steps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sonesuke <iamsonesuke@gmail.com>
1 parent f26b5d3 commit 77990f6

3 files changed

Lines changed: 93 additions & 298 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,20 @@ jobs:
3333
username: ${{ github.actor }}
3434
password: ${{ secrets.GITHUB_TOKEN }}
3535

36-
- name: Build & Initialize Dev Container
36+
- name: Build Dev Container
37+
uses: devcontainers/ci@v0.3
38+
env:
39+
CI: true
40+
CARGO_HOME: ${{ github.workspace }}/.cargo
41+
CARGO_TARGET_DIR: ${{ github.workspace }}/target
42+
CARGO_INCREMENTAL: 1
43+
with:
44+
imageName: ghcr.io/${{ github.repository }}/docgraph-dev
45+
cacheFrom: ghcr.io/${{ github.repository }}/docgraph-dev
46+
push: never
47+
runCmd: "true"
48+
49+
- name: Cargo Build
3750
uses: devcontainers/ci@v0.3
3851
env:
3952
CI: true

0 commit comments

Comments
 (0)