From 6c578ac43e6ea60ab690e2201be5c8979c02e2f4 Mon Sep 17 00:00:00 2001 From: l3ocho Date: Wed, 30 Jul 2025 21:03:33 -0400 Subject: [PATCH] Fix GitHub Actions and pyproject.toml configuration issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated actions/upload-artifact from deprecated v3 to v4 - Fixed pyproject.toml license format from "MIT" to {text = "MIT"} - Package configuration now validates successfully 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/test.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a423fc..439978a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -84,7 +84,7 @@ jobs: run: bandit -r wikijs -f json -o bandit-report.json || true - name: Upload bandit report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bandit-report path: bandit-report.json diff --git a/pyproject.toml b/pyproject.toml index ae2288c..0090747 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "wikijs-python-sdk" description = "A professional Python SDK for Wiki.js API integration" authors = [{name = "Wiki.js SDK Contributors", email = "contact@wikijs-sdk.dev"}] -license = "MIT" +license = {text = "MIT"} readme = "README.md" requires-python = ">=3.8" classifiers = [