Skip to content

Commit e94f919

Browse files
RytoEXtt2468
authored andcommitted
CI: Update first-party GitHub Actions to v4
GitHub Actions has deprecated actions based on node16. The v4 actions are based on node20. Replace first-party v2/v3 actions with their v4 counterparts. GitHub Actions has deprecated actions based on node12 and forces them to run on node16, which is also deprecated. Update to v4 actions to avoid warnings on CI. See: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
1 parent 9ee6e2f commit e94f919

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/crowdin_upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository_owner == 'obsproject'
1212
runs-on: ubuntu-22.04
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 100
1717
- name: Upload US English Language Files 🇺🇸

.github/workflows/generate_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
IS_CI: "true"
1919
steps:
2020
- name: 'Checkout'
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
with:
2323
path: ${{ github.workspace }}/obs-websocket
2424
- name: 'Generate docs'

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: contains(github.event.head_commit.message, '[skip ci]') != true
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
- name: Generate docs
2020
run: cd docs && ./build_docs.sh
2121
- name: Run markdownlint-cli

0 commit comments

Comments
 (0)