Skip to content

Commit 3109d0c

Browse files
committed
Update to newest third party action versions
1 parent 9d5dcbd commit 3109d0c

3 files changed

Lines changed: 37 additions & 3 deletions

File tree

.github/workflows/cleanup-repo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515

1616
# Mark issues and PRs with no activity as stale after a while, and close them after a while longer
17-
- uses: actions/stale@v9
17+
- uses: actions/stale@v10
1818
with:
1919
stale-issue-message: 'Marking issue as stale'
2020
stale-pr-message: 'Marking PR as stale'

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222

2323
- name: Get Composer Cache Directory
2424
id: composer-cache
2525
run: |
2626
echo "dir=$(make composer-cache-dir)" >> $GITHUB_OUTPUT
2727
28-
- uses: actions/cache@v4
28+
- uses: actions/cache@v5
2929
with:
3030
path: ${{ steps.composer-cache.outputs.dir }}
3131
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

t

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
diff --git a/.github/workflows/cleanup-repo.yaml b/.github/workflows/cleanup-repo.yaml
2+
index 5ddd154..1a44be6 100644
3+
--- a/.github/workflows/cleanup-repo.yaml
4+
+++ b/.github/workflows/cleanup-repo.yaml
5+
@@ -14,7 +14,7 @@ jobs:
6+
steps:
7+

8+
# Mark issues and PRs with no activity as stale after a while, and close them after a while longer
9+
- - uses: actions/stale@v9
10+
+ - uses: actions/stale@v10
11+
with:
12+
stale-issue-message: 'Marking issue as stale'
13+
stale-pr-message: 'Marking PR as stale'
14+
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
15+
index 8d3a18a..b0f2aa9 100644
16+
--- a/.github/workflows/tests.yaml
17+
+++ b/.github/workflows/tests.yaml
18+
@@ -18,14 +18,14 @@ jobs:
19+

20+
steps:
21+
- name: Checkout
22+
- uses: actions/checkout@v4
23+
+ uses: actions/checkout@v6
24+

25+
- name: Get Composer Cache Directory
26+
id: composer-cache
27+
run: |
28+
echo "dir=$(make composer-cache-dir)" >> $GITHUB_OUTPUT
29+

30+
- - uses: actions/cache@v4
31+
+ - uses: actions/cache@v5
32+
with:
33+
path: ${{ steps.composer-cache.outputs.dir }}
34+
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)