Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@

- name: Setup Release
id: setup_release
uses: LizardByte/setup-release-action@v2024.919.143601
uses: LizardByte/setup-release-action@v2025.612.120948
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

build:
needs:
- setup_release
runs-on: ubuntu-20.04

Check failure on line 40 in .github/workflows/CI.yml

View workflow job for this annotation

GitHub Actions / Common Lint / Common Lint

label "ubuntu-20.04" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2025", "windows-2025-vs2026", "windows-2022", "windows-11-arm", "ubuntu-slim", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-24.04-arm", "ubuntu-22.04", "ubuntu-22.04-arm", "macos-latest", "macos-latest-xlarge", "macos-latest-large", "macos-26-xlarge", "macos-26-large", "macos-26", "macos-15-intel", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xlarge", "macos-14-large", "macos-14", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows", "windows-11-arm". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file

steps:
- name: Checkout
Expand All @@ -47,12 +47,12 @@
submodules: recursive

- name: Set up Python
uses: LizardByte/setup-python-action@v2024.609.5111
uses: LizardByte/setup-python-action@v2025.612.124814
with:
python-version: '2.7'

- name: Patch third-party deps
if: false # disabled

Check failure on line 55 in .github/workflows/CI.yml

View workflow job for this annotation

GitHub Actions / Common Lint / Common Lint

constant expression "false" in condition. remove the if: section
shell: bash
working-directory: Themerr-plex.bundle/third-party
run: |
Expand Down Expand Up @@ -131,7 +131,7 @@

- name: Create/Update GitHub Release
if: ${{ needs.setup_release.outputs.publish_release == 'true' }}
uses: LizardByte/create-release-action@v2024.919.143026
uses: LizardByte/create-release-action@v2025.612.13419
with:
allowUpdates: true
body: ${{ needs.setup_release.outputs.release_body }}
Expand Down Expand Up @@ -171,7 +171,7 @@
rm Themerr-plex.bundle.zip

- name: Set up Python
uses: LizardByte/setup-python-action@v2024.609.5111
uses: LizardByte/setup-python-action@v2025.612.124814
with:
python-version: '2.7'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/localize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
submodules: recursive

- name: Set up Python
uses: LizardByte/setup-python-action@v2024.609.5111
uses: LizardByte/setup-python-action@v2025.612.124814
with:
python-version: '2.7'

Expand All @@ -37,7 +37,7 @@
python ./scripts/_locale.py --extract

- name: git diff
run: |

Check failure on line 40 in .github/workflows/localize.yml

View workflow job for this annotation

GitHub Actions / Common Lint / Common Lint

shellcheck reported issue in this script: SC2086:info:9:30: Double quote to prevent globbing and word splitting
# disable the pager
git config --global pager.diff false

Expand All @@ -55,7 +55,7 @@

- name: Get current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

Check failure on line 58 in .github/workflows/localize.yml

View workflow job for this annotation

GitHub Actions / Common Lint / Common Lint

shellcheck reported issue in this script: SC2086:info:1:36: Double quote to prevent globbing and word splitting

- name: Create/Update Pull Request
uses: peter-evans/create-pull-request@v7
Expand Down
Loading