Skip to content

Bump deps #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
08c2221
Bump yaml from 2.4.5 to 2.5.0
dependabot[bot] Aug 1, 2024
6d9c10e
Bump vercel from 34.2.7 to 35.2.2
dependabot[bot] Aug 1, 2024
4a2bf58
Bump probot from 13.3.0 to 13.3.6
dependabot[bot] Aug 1, 2024
2e8e7f1
Bump smee-client from 2.0.1 to 2.0.2
dependabot[bot] Aug 1, 2024
881de61
Bump minimatch from 9.0.4 to 10.0.1
dependabot[bot] Aug 1, 2024
d689d1d
Merge pull request #74 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
ab621fe
Merge pull request #75 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
9b1eaf8
Merge pull request #76 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
10e9e66
Merge pull request #78 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
cdeabd9
Merge pull request #80 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
47296ca
Bump typescript from 5.5.2 to 5.5.4
dependabot[bot] Aug 2, 2024
795fc4f
Bump semver from 7.6.2 to 7.6.3
dependabot[bot] Aug 2, 2024
20ee2c2
Bump rimraf from 5.0.7 to 6.0.1
dependabot[bot] Aug 2, 2024
91f2b37
Merge pull request #81 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
70d8b69
Merge pull request #77 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
5fc7848
Merge pull request #79 from amitsingh-007/dependabot/npm_and_yarn/dep…
amitsingh-007 Aug 2, 2024
1356104
Fix github checks status when using dispatch event
amitsingh-007 Aug 2, 2024
3109a4a
Update build.yml
amitsingh-007 Aug 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@ jobs:
Build:
runs-on: ubuntu-latest
steps:
# https://github.com/LouisBrunner/checks-action/issues/22#issuecomment-885047551
- name: Recognize sha ref
id: sharef
run: |
if [ "$EVENT" == 'pull_request' ]
then
echo "::set-output name=sha::$(echo ${{github.event.pull_request.head.sha}})"
elif [ "$EVENT" == 'workflow_run' ]
then
echo "::set-output name=sha::$(echo ${{github.event.workflow_run.head_sha}})"
elif [ "$EVENT" == 'workflow_dispatch' ]
then
echo "::set-output name=sha::$(echo ${{github.event.workflow_dispatch.head_sha}})"
else
echo "::set-output name=sha::$(echo $GITHUB_SHA)"
fi
env:
EVENT: ${{ github.event_name }}
REF: ${{ github.ref }}

- name: Checkout repository
uses: actions/checkout@v4

Expand All @@ -26,5 +46,6 @@ jobs:
if: always()
with:
token: ${{ github.token }}
sha: ${{ steps.sharef.outputs.sha }}
name: Build Check
conclusion: ${{ job.status }}
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"dependencies": {
"bytes": "3.1.2",
"json2md": "2.0.1",
"minimatch": "9.0.4",
"minimatch": "10.0.1",
"normalize-path": "3.0.0",
"probot": "13.3.0",
"semver": "7.6.2",
"yaml": "2.4.5",
"probot": "13.3.6",
"semver": "7.6.3",
"yaml": "2.5.0",
"zod": "3.23.8"
},
"devDependencies": {
Expand All @@ -47,10 +47,10 @@
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"rimraf": "5.0.7",
"smee-client": "2.0.1",
"typescript": "5.5.2",
"vercel": "34.2.7"
"rimraf": "6.0.1",
"smee-client": "2.0.2",
"typescript": "5.5.4",
"vercel": "35.2.2"
},
"engines": {
"node": ">= 18"
Expand Down
Loading
Loading