Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-integrations-tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Start Redis
uses: supercharge/redis-github-action@1.8.1
uses: supercharge/redis-github-action@v2
- name: Install Java
uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion scripts/split_tox_gh_actions/templates/test_group.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

{% if needs_redis %}
- name: Start Redis
uses: supercharge/redis-github-action@1.8.1
uses: supercharge/redis-github-action@2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Inconsistent action version tags between template and workflow

The supercharge/redis-github-action version tag is inconsistent between files: the generated workflow file uses @v2 while the template uses @2. Since the workflow file header states it's auto-generated from the template, the next regeneration will change the workflow to use @2. These are different Git refs - v2 and 2 are separate tags. The PR changelog shows the correct tag is v2, so the template reference to @2 may fail to resolve.

Additional Locations (1)

Fix in Cursor Fix in Web

{% endif %}

{% if needs_java %}
Expand Down