diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-02-24 01:51:10 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 07:51:10 -0700 |
commit | 0730d749adc160dfedc21a0fd4db3199c341dde5 (patch) | |
tree | a1fbe43976805ac24ed91285ae423b1fec17f7d3 | |
parent | 156cfe5c90a18d838979d143046698d0ac3f1072 (diff) |
chore: upgrade to `actions/setup-python@v5` (#22546)
Removes the following warning on the `wpt_epoch` CI workflow:
```
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, denoland/setup-deno@v1, actions/setup-python@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
```
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
-rw-r--r-- | .github/workflows/wpt_epoch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/wpt_epoch.yml b/.github/workflows/wpt_epoch.yml index cac5c9a46..2bc4472b1 100644 --- a/.github/workflows/wpt_epoch.yml +++ b/.github/workflows/wpt_epoch.yml @@ -35,7 +35,7 @@ jobs: deno-version: ${{ matrix.deno-version }} - name: Install Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" |