From e255177841a93bdbb1188fa5c969da1f84073d89 Mon Sep 17 00:00:00 2001 From: James Faeldon <111378+altcoder@users.noreply.github.com> Date: Mon, 22 Jan 2024 13:00:01 +0800 Subject: [PATCH] Update workflow secret key --- .github/workflows/sched-actions-update.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sched-actions-update.yml b/.github/workflows/sched-actions-update.yml index fbca7c28..0be8ce50 100644 --- a/.github/workflows/sched-actions-update.yml +++ b/.github/workflows/sched-actions-update.yml @@ -15,11 +15,11 @@ jobs: - uses: actions/checkout@v4 with: # [Required] Access token with `workflow` scope. - token: ${{ secrets.PAT }} + token: ${{ secrets.WORKFLOW_SECRET }} - name: Run GitHub Actions Version Updater - uses: saadmk11/github-actions-version-updater@v0.7.4 + uses: saadmk11/github-actions-version-updater@v0.8.1 with: # [Required] Access token with `workflow` scope. - token: ${{ secrets.PAT }} + token: ${{ secrets.WORKFLOW_SECRET }} pull_request_title: "ci: Update GitHub Actions to Latest Version" diff --git a/README.md b/README.md index 9b427fd3..14ecbc49 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This project is a template for creating Python projects that follows the Python Standards declared in PEP 621. It uses a pyproject.toml file to configure the project. -Flit is used to simplify the build process and publish to PyPI, however for private packages or more complicated setups the use of a separate setup.py and setup.cfg files is okay. However, with Flit, you can manage all relevant configurations within the pyproject.toml file, streamlining development and promoting maintainability by centralizing project metadata, dependencies, and build specifications in one place. +Flit is used to simplify the build process and publish to PyPI, however for private packages or more complicated setups the use of a separate setup.py and setup.cfg files is recommended. With Flit, you can manage all relevant configurations within the pyproject.toml file, streamlining development and promoting maintainability by centralizing project metadata, dependencies, and build specifications in one place. ## Project Organization