Skip to content

Commit 35e8ea1

Browse files
committed
Merge branch 'release/1.0.3'
2 parents 64b4324 + 9602bb2 commit 35e8ea1

File tree

5 files changed

+71
-52
lines changed

5 files changed

+71
-52
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,27 @@ on:
1313
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab.
1414

1515
jobs:
16+
guard:
17+
name: Usage guard
18+
runs-on: ubuntu-latest
19+
steps:
20+
# Uses the action-usage-guard action
21+
- name: Run Action Usage Guard
22+
uses: nekofar/action-usage-guard@develop
23+
with:
24+
# GitHub access token for authentication.
25+
token: ${{ secrets.ACCESS_TOKEN }}
26+
# Defines the threshold for the usage guard.
27+
threshold: 70
28+
1629
build: # Job named 'build'
1730
runs-on: ubuntu-latest # The type of machine to run the job on.
1831

32+
needs: [ guard ]
33+
1934
strategy: # Allows you to create a matrix for job configuration.
2035
matrix:
21-
node-version: [18.x, 19.x, 20.x] # Running tests across different environments.
36+
node-version: [ 18.x, 19.x, 20.x ] # Running tests across different environments.
2237
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2338

2439
steps: # The sequence of tasks that make up a job.
@@ -31,7 +46,7 @@ jobs:
3146
node-version: ${{ matrix.node-version }}
3247

3348
- name: Install pnpm package manager
34-
uses: pnpm/action-setup@v2.2.4 # Action for setting up pnpm.
49+
uses: pnpm/action-setup@v2.4.0 # Action for setting up pnpm.
3550
id: pnpm-install
3651
with:
3752
version: ^8

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
# Create a new GitHub release using the gathered information
5353
- name: Create the release
54-
uses: nekofar/create-github-release@v1.0.5
54+
uses: nekofar/create-github-release@v1.0.11
5555
with:
5656
token: ${{ github.token }} # Authentication token from GitHub
5757
tag: ${{ github.ref_name }} # The name of the tag to be released

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.3] - 2023-07-28
6+
7+
### <!-- 07 -->Continuous Integrations
8+
9+
- Bump pnpm/action-setup from 2.2.4 to 2.4.0
10+
- Bump nekofar/create-github-release from 1.0.5 to 1.0.11
11+
- Add usage guard to `build` workflow
12+
13+
### <!-- 08 -->Miscellaneous Tasks
14+
15+
- Bump @types/node from 20.4.4 to 20.4.5
16+
- Bump @lingui/swc-plugin from 4.0.2 to 4.0.4
17+
- Bump @types/react from 18.2.15 to 18.2.17
18+
- Bump @headlessui/react from 1.7.15 to 1.7.16
19+
- Bump eslint-config-prettier from 8.8.0 to 8.9.0
20+
521
## [1.0.2] - 2023-07-24
622

723
### <!-- 07 -->Continuous Integrations

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-lingui-template",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -14,7 +14,7 @@
1414
"format": "prettier --log-level error --write ."
1515
},
1616
"dependencies": {
17-
"@headlessui/react": "1.7.15",
17+
"@headlessui/react": "1.7.16",
1818
"@heroicons/react": "2.0.18",
1919
"@lingui/core": "4.3.0",
2020
"@lingui/react": "4.3.0",
@@ -29,15 +29,15 @@
2929
"@lingui/conf": "4.3.0",
3030
"@lingui/loader": "4.3.0",
3131
"@lingui/macro": "4.3.0",
32-
"@lingui/swc-plugin": "4.0.2",
32+
"@lingui/swc-plugin": "4.0.4",
3333
"@types/langs": "2.0.1",
34-
"@types/node": "20.4.4",
35-
"@types/react": "18.2.15",
34+
"@types/node": "20.4.5",
35+
"@types/react": "18.2.17",
3636
"@types/react-dom": "18.2.7",
3737
"autoprefixer": "10.4.14",
3838
"eslint": "8.45.0",
3939
"eslint-config-next": "13.4.12",
40-
"eslint-config-prettier": "8.8.0",
40+
"eslint-config-prettier": "8.9.0",
4141
"postcss": "8.4.27",
4242
"prettier": "3.0.0",
4343
"prettier-plugin-organize-imports": "3.2.3",

pnpm-lock.yaml

Lines changed: 31 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)