Skip to content

Commit 193c77e

Browse files
committed
Update and fix stale repos action
Signed-off-by: Matej Feder <[email protected]>
1 parent ba7c2de commit 193c77e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/stale-repos.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name: stale repo identifier
1818
workflow_dispatch:
1919
push:
2020
branches:
21-
- main
21+
- fix-stale-repos-action
2222
schedule:
2323
- cron: "0 1 1 * *" # Runs monthly: at 01:00 UTC on the 1st day of every month
2424

@@ -38,10 +38,10 @@ jobs:
3838
contents: read
3939

4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v6
4242

4343
- name: Run stale_repos tool
44-
uses: github/stale-repos@v2.1.3
44+
uses: github/stale-repos@v6
4545
env:
4646
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
ORGANIZATION: SovereignCloudStack
@@ -53,7 +53,7 @@ jobs:
5353
run: mv stale_repos.md stale_repos_${{ matrix.days }}.md
5454

5555
- name: Upload stale report artifact
56-
uses: actions/upload-artifact@v4
56+
uses: actions/upload-artifact@v5
5757
with:
5858
name: stale_repos_report_${{ matrix.days }}
5959
path: stale_repos_${{ matrix.days }}.md
@@ -67,10 +67,10 @@ jobs:
6767
issues: write
6868

6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v6
7171

7272
- name: Download all stale report artifacts
73-
uses: actions/download-artifact@v4
73+
uses: actions/download-artifact@v6
7474
with:
7575
path: stale_reports
7676

@@ -90,7 +90,7 @@ jobs:
9090
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9191

9292
- name: Create or update issue
93-
uses: peter-evans/create-issue-from-file@v5
93+
uses: peter-evans/create-issue-from-file@v6
9494
with:
9595
issue-number: ${{ env.issue_number }}
9696
title: Stale repository report

0 commit comments

Comments
 (0)