From 982609e0013ae860f672a52bcdffa3acf0ddc393 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Fri, 20 Jun 2025 14:18:35 -0700 Subject: [PATCH] **ci(workflows): downgrade upload-pages-artifact action to v2** ### Changes: - **github-pages.yml**: - Downgraded `actions/upload-pages-artifact` from `v3` to `v2`. ### Purpose: Reverted to `v2` of the `upload-pages-artifact` action to maintain compatibility with existing workflows or address potential issues introduced in `v3`. --- .github/workflows/github-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 40f548a2..060aabbf 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -24,7 +24,7 @@ jobs: uses: actions/configure-pages@v4 - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v2 with: path: './examples' # Upload the examples directory