From 9c0ed824f168438ece42057a03f70978299bcdb2 Mon Sep 17 00:00:00 2001 From: Zain Fathoni Date: Thu, 12 Mar 2026 17:50:45 +0700 Subject: [PATCH 1/3] feat: add Telegram section to community page Uncomment and update the Telegram group link to the new t.me/react_idn group. --- contents/community.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contents/community.mdx b/contents/community.mdx index 181e04c..8aefb1a 100644 --- a/contents/community.mdx +++ b/contents/community.mdx @@ -10,11 +10,11 @@ Bergabung dengan Meetup group ReactJS ID untuk mendapatkan update mengenai ajang [meetup.com/reactindonesia](https://www.meetup.com/reactindonesia/) - +[t.me/react_idn](https://t.me/react_idn) ## Facebook From 4ed7a0240a84006693f0ce24c3c1df9927ce1409 Mon Sep 17 00:00:00 2001 From: Zain Fathoni Date: Thu, 12 Mar 2026 17:52:03 +0700 Subject: [PATCH 2/3] chore: add *.local.json to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 265385c..7071be4 100644 --- a/.gitignore +++ b/.gitignore @@ -118,3 +118,6 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk + +# Local configuration +*.local.json From e6fa3bab14f982df0851c2c6e40849130bc9d747 Mon Sep 17 00:00:00 2001 From: Zain Fathoni Date: Thu, 12 Mar 2026 17:53:37 +0700 Subject: [PATCH 3/3] fix(ci): upgrade deprecated actions/cache@v1 to v4 and checkout to v4 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd3cc13..fa79347 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: yarn install --frozen-lockfile - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: cache-build with: path: '.' @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: restore-build with: path: '.'