denolib / setup-deno

Set up your GitHub Actions workflow with a specific version of deno
https://github.com/marketplace/actions/setup-deno-environment
MIT License
181 stars 16 forks source link

Lock file not being picked up #37

Closed amsul closed 4 years ago

amsul commented 4 years ago

Is there some configuration that enables this?

Currently I'm getting this warning for every import:

Warning Implicitly using master branch https://deno.land/std/fs/mod.ts
zhmushan commented 4 years ago

@amsul Specify the version can resolve this warning. e.g. import {} from "https://deno.land/std@0.53.0/fs/mod.ts"

And this isn't setup-deno's issue.

amsul commented 4 years ago

I realize that you can specify the version in the URL. What I'm talking about is the lock file (https://deno.land/manual/linking_to_external_code/integrity_checking) as it is a stricter check than just a version.

amsul commented 4 years ago

I feel like this isn't an issue with setup-deno, but rather with one of the dependencies of my dependency that is not using a specific version. Probably safe to close this.