Skip to content

Commit

Permalink
Merge pull request #83 from amitsingh-007/dependabot-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsingh-007 authored Aug 2, 2024
2 parents 3385407 + 3109a4a commit 898171b
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 158 deletions.
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

1 comment on commit 898171b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for webext-bot ready!

✅ Preview
https://webext-k99k6bxfc-amit-singhs-projects-c621efdb.vercel.app

Built with commit 898171b.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.