Skip to content

Commit b098acc

Browse files
committed
chore: Rename default branch as "main", update CI actions
1 parent 10a1bc6 commit b098acc

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
# only for the default branch.
66
push:
77
branches:
8-
- master
8+
- main
99
paths:
1010
- '.github/workflows/deploy.yml'
1111
- 'book.toml'
@@ -20,7 +20,7 @@ jobs:
2020
MDBOOK_VERSION: v0.4.36
2121
steps:
2222
- name: Clone repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v7
2424
- name: Install mdbook
2525
run: |
2626
mkdir installed-bins

.github/workflows/test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,17 @@ name: Run tests
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
8-
branches:
9-
- master
108
workflow_dispatch:
119

1210
jobs:
1311
test:
1412
name: Run tests
1513
runs-on: ubuntu-latest
1614
steps:
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-node@v4
19-
with:
20-
node-version: 20
15+
- uses: actions/checkout@v6
16+
- uses: actions/setup-node@v6
2117
- run: npm ci
2218
- run: npm run lint
2319
- run: npm test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ validate your work:
3737

3838
This repository contains the reference implementation of the parser. Other implementations exist which should be preferred for use in production and in tooling.
3939

40-
- The JavaScript implementation at [`fluent.js`](https://github.com/projectfluent/fluent.js), including the [React bindings](https://github.com/projectfluent/fluent.js/tree/master/fluent-react).
40+
- The JavaScript implementation at [`fluent.js`](https://github.com/projectfluent/fluent.js), including the [React bindings](https://github.com/projectfluent/fluent.js/tree/main/fluent-react).
4141
- The Python implementation at [`python-fluent`](https://github.com/projectfluent/python-fluent).
4242
- The Rust implementation at [`fluent-rs`](https://github.com/projectfluent/fluent-rs).
4343

0 commit comments

Comments
 (0)