Skip to content

Commit

Permalink
Use Deno 1.23 (was 1.16)
Browse files Browse the repository at this point in the history
  • Loading branch information
danopia committed Jul 11, 2022
1 parent 45409fe commit 14e7d7c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deno-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
strategy:
matrix:
deno-version:
- v1.15
- v1.16
- v1.23
- canary
fail-fast: false # run each branch to completion

Expand Down Expand Up @@ -48,7 +47,7 @@ jobs:
restore-keys: deno-https/v1-

- name: Check entrypoint
run: time deno cache server.ts
run: time deno cache --check=all server.ts

- name: Run any tests
run: time deno test
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM denoland/deno:alpine-1.16.4
FROM denoland/deno:alpine-1.23.3
RUN apk add --no-cache graphviz
ADD fonts/ /usr/share/fonts/truetype/

WORKDIR /src
ADD deps.ts .
RUN deno cache deps.ts
RUN deno cache --check=all deps.ts
ADD . .
RUN deno cache server.ts
RUN deno cache --check=all server.ts
ENTRYPOINT ["deno","run","--allow-env","--allow-net=0.0.0.0,api.github.com,cdn.deno.land,registry.npmjs.org","--allow-run=deno,dot","--allow-read=.","server.ts"]

0 comments on commit 14e7d7c

Please sign in to comment.