Skip to content

Commit

Permalink
feat: upgrade to deno 1.39.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-omarov committed Jan 3, 2024
1 parent ce56eda commit 6d4488a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: denoland/setup-deno@v1
with:
deno-version: v1.37.x
deno-version: v1.39.x
- uses: actions/checkout@v3
- uses: cli/gh-extension-precompile@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion src/commands/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default new Command()
const id = await Select.prompt({
message: 'Choose a repository to sync commits to:',
hint:
'Use arrow keys for navigation, space to select, and enter to submit. If you don\'t have a repository yet, create one and start again.',
"Use arrow keys for navigation, space to select, and enter to submit. If you don't have a repository yet, create one and start again.",
options: repos.map((repo) => ({ value: repo.id, name: repo.name })),
});
const selectedRepo = repos.find((repo) => repo.id === id);
Expand Down

0 comments on commit 6d4488a

Please sign in to comment.