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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Release
id: setup_release
Expand All @@ -37,11 +37,11 @@
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
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: Themerr-plex.bundle
submodules: recursive
Expand All @@ -52,7 +52,7 @@
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 @@ -122,7 +122,7 @@
mv ./Themerr-plex.bundle.zip ./artifacts/

- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: Themerr-plex.bundle
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
Expand Down Expand Up @@ -151,10 +151,10 @@
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: Themerr-plex.bundle

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

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive

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