Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalteen committed Nov 21, 2023
1 parent 90b5de7 commit cbde57a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- closed
branches:
- main
workflow_dispatch:

permissions:
contents: write
Expand All @@ -16,8 +17,9 @@ jobs:
runs-on: ubuntu-latest

if: |
github.event.pull_request.merged == true &&
startsWith(github.head_ref, 'dependabot/') == false
github.event_name == 'workflow_dispatch' ||
(github.event.pull_request.merged == true &&
startsWith(github.head_ref, 'dependabot/') == false)
steps:
- name: Checkout
Expand All @@ -28,14 +30,14 @@ jobs:

- name: Tag
id: tag
uses: issue-ops/semver@v0.1.0
uses: issue-ops/semver@v0.3.2
with:
manifest-path: package.json
workspace: ${{ github.workspace }}
ref: main

- name: Create Release
id: release
uses: issue-ops/[email protected].2
uses: issue-ops/[email protected].3
with:
tag: v${{ steps.tag.outputs.version }}
6 changes: 3 additions & 3 deletions .github/workflows/issue-created.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# Parse the issue body and convert it to JSON.
- name: Parse Issue Body
id: parse
uses: issue-ops/[email protected].1
uses: issue-ops/[email protected].2
with:
body: ${{ github.event.issue.body }}
issue-form-template: example-request.yml
Expand All @@ -56,8 +56,8 @@ jobs:
id: token
uses: actions/create-github-app-token@v1
with:
app_id: ${{ secrets.ISSUEOPS_DEMO_APP_ID }}
private_key: ${{ secrets.ISSUEOPS_DEMO_APP_KEY }}
app-id: ${{ secrets.ISSUEOPS_DEMO_APP_ID }}
private-key: ${{ secrets.ISSUEOPS_DEMO_APP_KEY }}

# Validate the parsed issue body against the issue form template and any
# custom validation scripts. You can also pass in additional inputs as
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
Expand Down

0 comments on commit cbde57a

Please sign in to comment.