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 8d3ecb8 commit 4d9d487
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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/releaser@v0.1.2
uses: issue-ops/releaser@v0.1.3
with:
tag: v${{ steps.tag.outputs.version }}
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 4d9d487

Please sign in to comment.