Skip to content

Commit

Permalink
Fix build by using latest versions of dependencies (#76)
Browse files Browse the repository at this point in the history
* Fix YAML linting check by using latest version

* Fix Shellcheck linting by using latest version

* Fix cert issue by using latest Hoverfly version
  • Loading branch information
johnboyes authored Jun 19, 2022
1 parent 1428636 commit e91cf57
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot_hack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# - the default version in `action.yml`
# - the example version in the README
# - the latest version in the 'tests.yml'
- uses: SpectoLabs/[email protected].0
- uses: SpectoLabs/[email protected].6

# update the version in `check_semver_labels.yml` manually, too
# (eventually Dependabot will do this automatically and I won't need this hack)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: yamllint
uses: reviewdog/action-yamllint@v1.1.0
uses: reviewdog/action-yamllint@v1.6.1
with:
github_token: ${{ secrets.github_token }}
reporter: github-check
Expand All @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: shellcheck
uses: reviewdog/action-shellcheck@v1.4.0
uses: reviewdog/action-shellcheck@v1.15.0
with:
github_token: ${{ secrets.github_token }}
reporter: github-check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runner_github_workspace_path: ${{ github.workspace }}
- name: Assert latest version installed
env:
HOVERFLY_VERSION: "v1.3.0"
HOVERFLY_VERSION: "v1.3.6"
run: |
hoverfly -version ${{ env.ASSERT_VERSION }}
hoverctl version ${{ env.ASSERT_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Example:
- name: Install Hoverfly
uses: agilepathway/hoverfly-github-action@main
with:
version: v1.3.0
version: v1.3.6
runner_github_workspace_path: ${{ github.workspace }}
```

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
Can be any released Hoverfly version:
https://github.com/SpectoLabs/hoverfly/releases
Defaults to the latest version.
default: 'v1.3.0'
default: 'v1.3.6'
required: false
runner_github_workspace_path:
description: >
Expand Down

0 comments on commit e91cf57

Please sign in to comment.