Skip to content

Commit

Permalink
test: Fix tests on py37 & py38
Browse files Browse the repository at this point in the history
  • Loading branch information
playpauseandstop committed Nov 3, 2022
1 parent 11243a0 commit df368c7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install_python_and_poetry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
run: "pipx install --python='${{ steps.python.outputs.python-path }}' poetry==${{ inputs.poetry-version }}"

- name: "Cache venv"
uses: "actions/cache@v3.0.10"
uses: "actions/cache@v3.0.11"
with:
path: "./.venv/"
key: "venv-${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}${{ inputs.cache-key-suffix }}"
2 changes: 1 addition & 1 deletion .github/actions/run_pre_commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
shell: "bash"

- name: "Cache mypy"
uses: "actions/cache@v3.0.10"
uses: "actions/cache@v3.0.11"
with:
path: "./.mypy_cache/"
key: "mypy-${{ runner.os }}-${{ inputs.python-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/run_tox/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
shell: "bash"

- name: "Cache tox"
uses: "actions/cache@v3.0.10"
uses: "actions/cache@v3.0.11"
with:
path: "./.tox/"
key: "tox-${{ inputs.python-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: "poetry run python3 -m badabump --ci ${{ github.event.inputs.args }}"

- id: "token"
uses: "tibdex/github-app-token@v1.7"
uses: "tibdex/github-app-token@v1.7.0"
with:
app_id: "${{ secrets.BADABUMP_APP_ID }}"
private_key: "${{ secrets.BADABUMP_APP_PRIVATE_KEY }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- id: "token"
uses: "tibdex/github-app-token@v1.7"
uses: "tibdex/github-app-token@v1.7.0"
with:
app_id: "${{ secrets.BADABUMP_APP_ID }}"
private_key: "${{ secrets.BADABUMP_APP_PRIVATE_KEY }}"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def test_changelog_merge_similar_commits():
content
== f"""## Fixes:
- {FIX_COMMIT.removeprefix('fix: ')} (#42, #69, #9000)
- {FIX_COMMIT[5:]} (#42, #69, #9000)
- Does not matter (#9999)"""
)

Expand Down

0 comments on commit df368c7

Please sign in to comment.