Skip to content

Commit fdfff44

Browse files
authored
Upgrade GitHub Actions to latest versions (#2820)
## Summary Upgrade GitHub Actions to their latest versions for improved features, bug fixes, and security updates. ## Changes | Action | Old Version(s) | New Version | Release | Files | |--------|---------------|-------------|---------|-------| | `actions/configure-pages` | [`v3`](https://github.com/actions/configure-pages/releases/tag/v3) | [`v5`](https://github.com/actions/configure-pages/releases/tag/v5) | [Release](https://github.com/actions/configure-pages/releases/tag/v5) | publish-playground.yml | | `actions/upload-pages-artifact` | [`v3`](https://github.com/actions/upload-pages-artifact/releases/tag/v3) | [`v4`](https://github.com/actions/upload-pages-artifact/releases/tag/v4) | [Release](https://github.com/actions/upload-pages-artifact/releases/tag/v4) | publish-playground.yml | ## Why upgrade? Keeping GitHub Actions up to date ensures: - **Security**: Latest security patches and fixes - **Features**: Access to new functionality and improvements - **Compatibility**: Better support for current GitHub features - **Performance**: Optimizations and efficiency improvements ### Security Note Actions that were previously pinned to commit SHAs remain pinned to SHAs (updated to the latest release SHA) to maintain the security benefits of immutable references. ### Testing These changes only affect CI/CD workflow configurations and should not impact application functionality. The workflows should be tested by running them on a branch before merging.
1 parent 9831093 commit fdfff44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-playground.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
submodules: "true"
3636
- name: Setup Pages
37-
uses: actions/configure-pages@v3
37+
uses: actions/configure-pages@v5
3838
- name: Setup rust toolchain
3939
uses: ./.github/actions/toolchains/rust
4040
with:
@@ -52,7 +52,7 @@ jobs:
5252
- name: Build and Test
5353
run: python ./build.py --no-check --no-test --wasm --npm --play
5454
- name: Upload artifact
55-
uses: actions/upload-pages-artifact@v3
55+
uses: actions/upload-pages-artifact@v4
5656
with:
5757
path: ./source/playground/public
5858

0 commit comments

Comments
 (0)