From bfc94a7d303c84508af54770b898a2da84e2e522 Mon Sep 17 00:00:00 2001 From: David Yang Date: Sat, 14 Sep 2024 18:17:10 +0800 Subject: [PATCH 1/3] Remove feathub mentions from github files Remove remaining mentions that were missed last time. --- .github/ISSUE_TEMPLATE.md | 2 -- .github/ISSUE_TEMPLATE/feature_request.md | 6 ------ 2 files changed, 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index d68605f6a..15922de9a 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,7 +1,5 @@ Before opening a new issue, please read the following: -- for **feature requests**, please use [FeatHub](https://feathub.com/Guake/guake). This allow us to - spot directly which are the most requested features. - before opening **a new bug**, please search for a similar one in the [GitHub issue](https://github.com/Guake/guake/issues). - to **report a bug**, please give the following information: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 9d6be72f0..1876997cf 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -10,9 +10,3 @@ assignees: '' Be sure to check the existing issues (both open and closed!), and make sure you are running the latest version of Guake. For how to run the latest Guake in your computer, please refer to [Install from source](https://guake.readthedocs.io/en/latest/user/installing.html#install-from-source). - ---------------------------------------- - -Please use [FeatHub](https://feathub.com/Guake/guake) to fill-up a feature request. - -This allows us to spot directly which are the most requested features. From e52428bec28ae271e8f0e8b4b850e7836ff88264 Mon Sep 17 00:00:00 2001 From: David Yang Date: Sat, 14 Sep 2024 23:13:52 +0800 Subject: [PATCH 2/3] Update deprecated actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75e889b0b..22ff91877 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,11 @@ jobs: python-version: ["3.8", "3.9"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Get tag id: tag - run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/} + run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 @@ -69,7 +69,7 @@ jobs: - name: Store dists (Python 3.9) if: steps.isLatest.outputs.result - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dist path: dist From 785532f3e63d3766e77ee26e5409acc3ae17a6bd Mon Sep 17 00:00:00 2001 From: David Yang Date: Sat, 14 Sep 2024 23:50:13 +0800 Subject: [PATCH 3/3] Bump download-artifact and python versions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22ff91877..847463e37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -81,7 +81,7 @@ jobs: - build steps: - name: Retrieve dists - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: path: ./ - name: Publish distribution 📦 to Test PyPI diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 950115a0b..a835a2bc9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,16 +15,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Get tag id: tag - run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/} + run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - name: Set up Python 3.9 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.9 - name: Checkout the current branch run: |