-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from drashland/cleanup-for-v1
Cleanup for v1
- Loading branch information
Showing
27 changed files
with
8,858 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: bumper | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
update-dep: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Deno | ||
uses: denolib/setup-deno@v2 | ||
|
||
- name: Update Dependencies | ||
run: | | ||
cd src | ||
deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm/mod.ts update | ||
- name: Update Test Dependencies | ||
run: | | ||
cd src/tests | ||
deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm/mod.ts update | ||
- name: Update Dockerfile | ||
run: deno run --allow-all console/bumper.ts | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v2 | ||
with: | ||
token: ${{ secrets.CI_USER_PAT }} | ||
commit-message: Update dependencies | ||
title: Update dependencies | ||
body: This was auto-generated by GitHub Actions. | ||
branch: update-dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts"; | ||
|
||
const b = new BumperService("realworld"); | ||
|
||
b.bump([ | ||
{ | ||
filename: "./.docker/drash.dockerfile", | ||
replaceTheRegex: /-s v[0-9.]+[0-9.]+[0-9]/g, | ||
replaceWith: "-s v{{ latestDenoVersion }}", | ||
}, | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export { Drash } from "https://deno.land/x/drash@v1.0.6/mod.ts"; | ||
export { Drash } from "https://deno.land/x/drash@v1.2.5/mod.ts"; | ||
|
||
export { | ||
Client as PostgresClient, | ||
Pool, | ||
} from "https://deno.land/x/postgres@v0.4.2/mod.ts"; | ||
export { Column } from "https://deno.land/x/postgres@v0.4.2/connection.ts"; | ||
export { QueryResult } from "https://deno.land/x/postgres@v0.4.2/query.ts"; | ||
export { PoolClient } from "https://deno.land/x/postgres@v0.4.2/client.ts"; | ||
import * as bcrypt from "https://deno.land/x/bcrypt@v0.2.1/mod.ts"; | ||
} from "https://deno.land/x/postgres@v0.4.5/mod.ts"; | ||
export { Column } from "https://deno.land/x/postgres@v0.4.5/connection.ts"; | ||
export type { QueryResult } from "https://deno.land/x/postgres@v0.4.5/query.ts"; | ||
export { PoolClient } from "https://deno.land/x/postgres@v0.4.5/client.ts"; | ||
import * as bcrypt from "https://deno.land/x/bcrypt@v0.2.4/mod.ts"; | ||
export { bcrypt }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.