Skip to content

Commit e91cf57

Browse files
authored
Fix build by using latest versions of dependencies (#76)
* Fix YAML linting check by using latest version * Fix Shellcheck linting by using latest version * Fix cert issue by using latest Hoverfly version
1 parent 1428636 commit e91cf57

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/dependabot_hack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# - the default version in `action.yml`
1818
# - the example version in the README
1919
# - the latest version in the 'tests.yml'
20-
- uses: SpectoLabs/[email protected].0
20+
- uses: SpectoLabs/[email protected].6
2121

2222
# update the version in `check_semver_labels.yml` manually, too
2323
# (eventually Dependabot will do this automatically and I won't need this hack)

.github/workflows/reviewdog.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/[email protected]
2525
- name: yamllint
26-
uses: reviewdog/action-yamllint@v1.1.0
26+
uses: reviewdog/action-yamllint@v1.6.1
2727
with:
2828
github_token: ${{ secrets.github_token }}
2929
reporter: github-check
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/[email protected]
3636
- name: shellcheck
37-
uses: reviewdog/action-shellcheck@v1.4.0
37+
uses: reviewdog/action-shellcheck@v1.15.0
3838
with:
3939
github_token: ${{ secrets.github_token }}
4040
reporter: github-check

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runner_github_workspace_path: ${{ github.workspace }}
2727
- name: Assert latest version installed
2828
env:
29-
HOVERFLY_VERSION: "v1.3.0"
29+
HOVERFLY_VERSION: "v1.3.6"
3030
run: |
3131
hoverfly -version ${{ env.ASSERT_VERSION }}
3232
hoverctl version ${{ env.ASSERT_VERSION }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Example:
7777
- name: Install Hoverfly
7878
uses: agilepathway/hoverfly-github-action@main
7979
with:
80-
version: v1.3.0
80+
version: v1.3.6
8181
runner_github_workspace_path: ${{ github.workspace }}
8282
```
8383

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
Can be any released Hoverfly version:
1212
https://github.com/SpectoLabs/hoverfly/releases
1313
Defaults to the latest version.
14-
default: 'v1.3.0'
14+
default: 'v1.3.6'
1515
required: false
1616
runner_github_workspace_path:
1717
description: >

0 commit comments

Comments
 (0)