Skip to content

Commit

Permalink
✅ Update Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb committed Mar 16, 2024
1 parent 64b9596 commit 87d9f82
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 47 deletions.
40 changes: 0 additions & 40 deletions .github/lock.yml

This file was deleted.

7 changes: 4 additions & 3 deletions .github/workflows/buildBinary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: '3.9'
architecture: 'x64'

- name: Install PlatformIO
run: |
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/buildTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: '3.9'
architecture: 'x64'

- name: Install PlatformIO
run: |
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/lockClosed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#
# lockClosed.yml
# Lock closed issues after a period of inactivity
#

name: Lock Closed Issues

on:
schedule:
- cron: '0 1/13 * * *'

jobs:
lock:
name: Lock Closed Issues
if: github.repository == 'bigtreetech/BIGTREETECH-TouchScreenFirmware'

runs-on: ubuntu-latest

steps:
- uses: dessant/lock-threads@v5
with:
github-token: ${{ github.token }}
process-only: 'issues'
issue-inactive-days: '90'
exclude-issue-created-before: ''
exclude-any-issue-labels: ''
add-issue-labels: ''
issue-comment: >
This issue has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
issue-lock-reason: ''
4 changes: 3 additions & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
name: Mark Stale Issues and PRs

on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
name: Mark Stale Issues and PRs
if: github.repository == 'bigtreetech/BIGTREETECH-TouchScreenFirmware'

runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 87d9f82

Please sign in to comment.