Update GitHub Workflows and Actions (#1622)

This PR is to update the GitHub Workflows and Actions to resolve
residual warnings and errors and using the latest versions available.
This commit is contained in:
ZeliardM
2026-02-21 16:09:57 -05:00
committed by GitHub
parent ade64c64af
commit 494db73fa8
5 changed files with 84 additions and 61 deletions

View File

@@ -1,6 +1,6 @@
---
name: Stale
# yamllint disable-line rule:truthy
on:
schedule:
- cron: "0 0 * * *"
@@ -11,8 +11,9 @@ jobs:
if: github.repository_owner == 'python-kasa'
runs-on: ubuntu-latest
steps:
- name: Stale issues and prs
uses: actions/stale@v9.0.0
- name: Stale Issues and PRs Policy
id: stale-issues-and-prs-policy
uses: actions/stale@v10
with:
repo-token: ${{ github.token }}
days-before-stale: 90
@@ -43,9 +44,9 @@ jobs:
Thank you for your contributions.
- name: Needs-more-information and waiting-for-reporter stale issues policy
uses: actions/stale@v9.0.0
- name: needs-more-information and waiting-for-reporter Stale Issues Policy
id: specific-stale-issues-policy
uses: actions/stale@v10
with:
repo-token: ${{ github.token }}
only-labels: "needs-more-information,waiting-for-reporter"