Skip to content

Commit

Permalink
Update workflows (#4421)
Browse files Browse the repository at this point in the history
* Update workflows

* Fix typo and linting issue

---------

Co-authored-by: Dhruv Bhanushali <dhruv_b@live.com>
  • Loading branch information
openverse-bot and dhruvkb committed Jun 3, 2024
1 parent f44469e commit 28158c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ repos:
- id: requirements-txt-fixer

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.2
rev: v0.4.7
hooks:
- id: ruff # replaces Flake8, isort, pydocstyle, pyupgrade
args:
Expand Down Expand Up @@ -76,12 +76,12 @@ repos:
- id: shfmt-docker

- repo: https://github.com/rhysd/actionlint
rev: v1.6.27
rev: v1.7.1
hooks:
- id: actionlint-docker

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
args: [
Expand Down Expand Up @@ -155,7 +155,7 @@ repos:
files: (.vale/.*|.mdx?)$

- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 37.330.1
rev: 37.384.0
hooks:
- id: renovate-config-validator
args:
Expand Down
2 changes: 1 addition & 1 deletion documentation/_ext/link_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def resolve_issue_reference(

def init_cache(app: Sphinx) -> None:
if not hasattr(app.env, "issuetracker_cache"):
app.env.issuetracker_cache: "IssueTrackerCache" = {} # type: ignore
app.env.issuetracker_cache: IssueTrackerCache = {}
return None


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ where they render a 3D model on hover of the search results, when on desktop.
base feature branch needed. Meta search support for 3D models does not need to
be feature flagged.
- e2e tests should be added for any new routes; and updated for existing routes
that are modified. PRs will be blocked in the abcense of these tests.
that are modified. PRs will be blocked in the absence of these tests.
- New content types should always launch in `beta` until we reach a certain
number of results and/or are confident in our UI components (this metric(s)
need to be determined).
Expand Down

0 comments on commit 28158c1

Please sign in to comment.