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 ef1e911
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 46 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: ''
2 changes: 2 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:

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

runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit ef1e911

Please sign in to comment.