Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
a03d64b
initial commit
45huto5h Jul 18, 2025
a0cf0ce
made changes
45huto5h Jul 18, 2025
ad84ffe
added casses for MD-SESSION-TOKEN & MD-API-TOKEN
45huto5h Jul 18, 2025
7493aba
initial commit
45huto5h Aug 4, 2025
5a4a025
removed unwanted comment
45huto5h Aug 4, 2025
756314d
after npm install
45huto5h Aug 4, 2025
7b5caa3
undid the yarn.lock
45huto5h Aug 4, 2025
5430110
undid the package-lock.json
45huto5h Aug 4, 2025
df7406d
Fix build issues: prism v2.x compatibility, SSR safety, missing compo…
45huto5h Aug 6, 2025
4ee28d9
finishing touch
45huto5h Aug 6, 2025
e4d743f
lint checks fixed
45huto5h Aug 6, 2025
3986cbb
Fix MDX compilation and SSR Redux issues
45huto5h Aug 6, 2025
98a213a
Fix unnecessary escape characters in regex patterns
45huto5h Aug 6, 2025
8a34b54
Temporarily disable clean-script in CI to fix base branch incompatibi…
45huto5h Aug 6, 2025
7fa5845
Trigger CI rebuild with clean cache
45huto5h Aug 6, 2025
7202a72
Add fallback error handling for prism theme imports
45huto5h Aug 6, 2025
f1292d6
Undid the last commit
45huto5h Aug 6, 2025
e07cc8c
created new files from scratch
45huto5h Aug 7, 2025
9b82f02
Fix prism-react-renderer imports with fallback handling
45huto5h Aug 7, 2025
027e250
Update GitHub Actions cache from deprecated v2 to v4
45huto5h Aug 7, 2025
be6fd47
Update all deprecated GitHub Actions to latest versions
45huto5h Aug 7, 2025
3dc0a02
Fix ESLint import order warnings and formatting
45huto5h Aug 7, 2025
3498047
Update all deprecated GitHub Actions to latest versions
45huto5h Aug 7, 2025
d4fadca
Remove temporary update script
45huto5h Aug 7, 2025
001f291
Update script to handle all deprecated GitHub Actions including artif…
45huto5h Aug 7, 2025
edb1feb
Changes made into few more files
45huto5h Aug 7, 2025
3321b9c
Add .mjs theme files for backward compatibility with main branch
45huto5h Aug 7, 2025
cb2903b
fix: update all GitHub Actions to latest versions
45huto5h Aug 7, 2025
fe50026
fix: use latest compressed-size-action commit with updated dependencies
45huto5h Aug 7, 2025
60b2875
fix: use full commit SHA for compressed-size-action
45huto5h Aug 7, 2025
12b84c7
resolved dependencies conflict
45huto5h Aug 12, 2025
4497c46
synced yarn file with package.json
45huto5h Aug 12, 2025
5c6dcd0
updated prism-react-renderer version
45huto5h Aug 12, 2025
c5fe87c
updated prism-react-renderer version
45huto5h Aug 12, 2025
bb0ccdd
updated package.json
45huto5h Aug 12, 2025
02a8f40
modified clean command
45huto5h Aug 12, 2025
279386b
reverted last 2 commits
45huto5h Aug 12, 2025
04f2a21
package.json in demo is updated
45huto5h Aug 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/build-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: yarn
- uses: preactjs/compressed-size-action@v2
- uses: preactjs/compressed-size-action@2a937a1dd255ef04f3ee3611816b630873f5faa3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
build-script: build
clean-script: clean
pattern: "{demo/build/assets/js/*js,demo/build/assets/css/styles*css,demo/.docusaurus/globalData.json,demo/build/index.html,demo/build/docs/index.html,demo/build/docs/installation/index.html}"
strip-hash: '\.([^;]\w{7})\.'
minimum-change-threshold: 30
Expand All @@ -33,8 +32,8 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
- name: Installation
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/canary-beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
if: ${{ github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs' && github.ref == 'refs/heads/v2.0.0' && github.event_name == 'push' }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed to get the commit number with "git rev-list --count HEAD"
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/canary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
if: ${{ github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs' && github.ref == 'refs/heads/main' && github.event_name == 'push' }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed to get the commit number with "git rev-list --count HEAD"
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: yarn
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
8 changes: 4 additions & 4 deletions .github/workflows/combine-dependabot-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: github.repository_owner == 'PaloAltoNetworks'
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v3
- uses: actions/github-script@v7
id: fetch-branch-names
name: Fetch dependabot branches
with:
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
console.log('Combined: ' + combined);
return combined

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -117,12 +117,12 @@ jobs:

- name: Get token
id: get_token
uses: machine-learning-apps/actions-app-token@master
uses: machine-learning-apps/actions-app-token@v1
with:
APP_PEM: ${{ secrets.APP_PEM }}
APP_ID: ${{ secrets.APP_ID }}

- uses: actions/github-script@v3
- uses: actions/github-script@v7
name: Create Combined Pull Request
env:
PRS_STRING: ${{ steps.fetch-branch-names.outputs.prs-string }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/deploy-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Build site
run: yarn build-demo && zip -r build.zip demo/build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build
path: build.zip
Expand All @@ -41,15 +41,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build

Expand All @@ -58,7 +58,7 @@ jobs:

- name: Deploy to Firebase
id: deploy_live
uses: FirebaseExtended/action-hosting-deploy@276388dd6c2cde23455b30293105cc866c22282d # v0.6-alpha
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_PANDEV }}"
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

analyze_unsafe:
if: github.repository_owner == 'PaloAltoNetworks' && needs.precheck.outputs.is-org-member-result != 'null'
Expand All @@ -65,17 +65,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

build:
name: Build
Expand All @@ -89,12 +89,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
Expand All @@ -108,7 +108,7 @@ jobs:
- name: Build site
run: yarn build-demo && zip -r build.zip demo/build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build
path: build.zip
Expand All @@ -121,15 +121,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build

Expand All @@ -138,7 +138,7 @@ jobs:

- name: Deploy to Firebase
id: deploy_preview
uses: FirebaseExtended/action-hosting-deploy@276388dd6c2cde23455b30293105cc866c22282d # v0.6-alpha
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_PANDEV }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: "*"
registry-url: "https://registry.npmjs.org"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: "*"
registry-url: "https://registry.npmjs.org"
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
name: Prepare Cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
node_modules
Expand All @@ -33,11 +33,11 @@ jobs:
needs: prepare-yarn-cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
node_modules
Expand All @@ -55,11 +55,11 @@ jobs:
needs: prepare-yarn-cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
node_modules
Expand All @@ -75,11 +75,11 @@ jobs:
needs: prepare-yarn-cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
node_modules
Expand Down
Loading
Loading