Skip to content

Commit a11d377

Browse files
committed
update action versions
1 parent 7380fb1 commit a11d377

5 files changed

Lines changed: 16 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
lint:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v6
36+
- uses: actions/checkout@v7
3737

3838
- name: Setup
3939
uses: ./.github/setup
@@ -44,7 +44,7 @@ jobs:
4444
format:
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v6
47+
- uses: actions/checkout@v7
4848

4949
- name: Setup
5050
uses: ./.github/setup
@@ -55,7 +55,7 @@ jobs:
5555
typecheck:
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v6
58+
- uses: actions/checkout@v7
5959

6060
- name: Setup
6161
uses: ./.github/setup
@@ -66,7 +66,7 @@ jobs:
6666
test:
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v6
69+
- uses: actions/checkout@v7
7070

7171
- name: Setup
7272
uses: ./.github/setup
@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
needs: [test]
8686
steps:
87-
- uses: actions/checkout@v6
87+
- uses: actions/checkout@v7
8888

8989
- name: Setup
9090
uses: ./.github/setup
@@ -100,7 +100,7 @@ jobs:
100100
if: github.event_name == 'pull_request'
101101
runs-on: ubuntu-latest
102102
steps:
103-
- uses: actions/checkout@v6
103+
- uses: actions/checkout@v7
104104

105105
- name: Setup
106106
uses: ./.github/setup

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Release
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/tegami-pr-comment.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,18 @@ on:
88
jobs:
99
comment:
1010
if: >
11-
github.event.workflow_run.conclusion == 'success' &&
12-
github.event.workflow_run.event == 'pull_request' &&
13-
github.event.workflow_run.head_repository.full_name == github.repository
11+
github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.head_repository.full_name == github.repository
1412
runs-on: ubuntu-latest
1513
permissions:
1614
actions: read
1715
pull-requests: write
1816
steps:
19-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
2018

2119
- name: Setup
2220
uses: ./.github/setup
2321

24-
- uses: actions/download-artifact@v4
22+
- uses: actions/download-artifact@v8
2523
with:
2624
name: tegami-pr-preview
2725
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/tegami-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
preview:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515
with:
1616
fetch-depth: 0
1717

scripts/tegami.mts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { tegami } from "tegami";
2-
import { runCli } from "tegami/cli";
3-
import { github } from "tegami/plugins/github";
1+
import { tegami } from "tegami"
2+
import { runCli } from "tegami/cli"
3+
import { github } from "tegami/plugins/github"
44

55
const paper = tegami({
66
plugins: [
@@ -11,6 +11,6 @@ const paper = tegami({
1111
},
1212
}),
1313
],
14-
});
14+
})
1515

16-
await runCli(paper);
16+
await runCli(paper)

0 commit comments

Comments
 (0)