diff options
author | silverwind <me@silverwind.io> | 2024-03-03 17:23:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-03 17:23:14 +0100 |
commit | efa631aeead094267d46ea8f86e6d568f0c731e4 (patch) | |
tree | 830beb1bf9b9865e2ac000814986a5ed4aeccac1 /.github | |
parent | e3524c63d6d42865ea8288af89b372544d35474b (diff) | |
download | gitea-efa631aeead094267d46ea8f86e6d568f0c731e4.tar.gz gitea-efa631aeead094267d46ea8f86e6d568f0c731e4.zip |
Update js and py dependencies, bump python (#29561)
- Update js and py dependencies excluding `@mcaptcha/vanilla-glue`,
`eslint-plugin-array-func`
- Update stylelint config
- Require python 3.10 and use 3.12 on CI, bump setup-python as well
- Tested markdown toolbar, charts, clipboard, swagger ui, vue
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull-compliance.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/pull-compliance.yml b/.github/workflows/pull-compliance.yml index 391137f015..02a265b1ff 100644 --- a/.github/workflows/pull-compliance.yml +++ b/.github/workflows/pull-compliance.yml @@ -32,9 +32,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - run: pip install poetry - run: make deps-py - run: make lint-templates @@ -45,9 +45,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - run: pip install poetry - run: make deps-py - run: make lint-yaml |