Skip to content

Commit ce00559

Browse files
committed
chore: update action runners
1 parent bad4c63 commit ce00559

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/failure-notifier.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: always()
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919

@@ -24,6 +24,7 @@ jobs:
2424
max-timeout: '1200'
2525
polling-interval: '30'
2626
github-token: ${{ secrets.GITHUB_TOKEN }}
27+
2728
notify-on-failure:
2829
name: Notify on failure
2930
needs: [waitForWorkflows]
@@ -34,10 +35,10 @@ jobs:
3435
issues: write
3536
steps:
3637
- name: Check out the repository
37-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3839
- name: Check conditions for failure notification
3940
id: check_label
40-
uses: actions/github-script@v7
41+
uses: actions/github-script@v8
4142
with:
4243
script: |
4344
const { owner, repo } = context.repo;
@@ -77,7 +78,7 @@ jobs:
7778
core.setOutput("should_send_notif", shouldSendNotification ? "true" : "false");
7879
- name: Create issue on failure
7980
if: ${{ steps.check_label.outputs.should_send_notif == 'true' }}
80-
uses: actions/github-script@v7
81+
uses: actions/github-script@v8
8182
with:
8283
script: |
8384
const ISSUE_LABEL = "framework-bump-failure";

.github/workflows/release-please.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
token: ${{ steps.get-token.outputs.token }}
2323
release-type: node
2424
package-name: '@netlify/angular-runtime'
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
if: ${{ steps.release.outputs.release_created }}
27-
- uses: actions/setup-node@v4
27+
- uses: actions/setup-node@v6
2828
with:
2929
node-version: '*'
3030
cache: 'npm'

.github/workflows/stalebot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v9
10+
- uses: actions/stale@v10.1.0
1111
with:
1212
exempt-issue-labels: 'WIP,security,action_item,never_stale'
1313
days-before-issue-stale: 365

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
fail-fast: false
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
check-latest: true

0 commit comments

Comments
 (0)