Skip to content

Commit a269186

Browse files
committed
Merge branch 'main' of github.com:VectorInstitute/aieng-template-auth
2 parents 04d2d7e + b48b370 commit a269186

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

.github/workflows/code_checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
run-code-check:
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545

4646
- name: Setup pnpm
4747
uses: pnpm/action-setup@v4
4848

4949
- name: Setup Node.js
50-
uses: actions/setup-node@v4
50+
uses: actions/setup-node@v6
5151
with:
5252
node-version: '18'
5353
cache: 'pnpm'
@@ -56,7 +56,7 @@ jobs:
5656
run: pnpm install --frozen-lockfile
5757

5858
- name: Setup Python for pre-commit
59-
uses: actions/setup-python@v5
59+
uses: actions/setup-python@v6
6060
with:
6161
python-version: '3.12'
6262

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id-token: write # Required for OIDC authentication to npm
2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
# Fetch full history for changesets
2828
fetch-depth: 0
@@ -31,7 +31,7 @@ jobs:
3131
uses: pnpm/action-setup@v4
3232

3333
- name: Setup Node.js
34-
uses: actions/setup-node@v4
34+
uses: actions/setup-node@v6
3535
with:
3636
node-version: '20'
3737
cache: 'pnpm'

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
unit-tests:
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v6
4343

4444
- name: Setup pnpm
4545
uses: pnpm/action-setup@v4
4646

4747
- name: Setup Node.js
48-
uses: actions/setup-node@v4
48+
uses: actions/setup-node@v6
4949
with:
5050
node-version: '18'
5151
cache: 'pnpm'

apps/demo-react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# demo-react
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [a5d707e]
8+
- @vector-institute/aieng-auth-react@0.1.3
9+
310
## 0.1.2
411

512
### Patch Changes

apps/demo-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "demo-react",
33
"private": true,
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

packages/react/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vector-institute/aieng-auth-react
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- a5d707e: Add comprehensive README documentation with usage examples, API reference, and best practices
8+
39
## 0.1.2
410

511
### Patch Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vector-institute/aieng-auth-react",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "React hooks and components for Google OAuth authentication",
55
"keywords": [
66
"google",

0 commit comments

Comments
 (0)