mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
CI: Upgrade actions/checkout
to v3
actions/checkout's only change between v2 and v3 is an internal switch to node 16 which wont effect our usage of it at all.
This commit is contained in:
parent
5453d6e5ec
commit
3ddefb9f5f
Notes:
sideshowbarker
2024-07-17 04:50:37 +09:00
Author: https://github.com/filiphsps Commit: https://github.com/SerenityOS/serenity/commit/3ddefb9f5f Pull-request: https://github.com/SerenityOS/serenity/pull/15901 Reviewed-by: https://github.com/ADKaster ✅
5 changed files with 9 additions and 9 deletions
10
.github/workflows/libjs-test262.yml
vendored
10
.github/workflows/libjs-test262.yml
vendored
|
@ -19,28 +19,28 @@ jobs:
|
|||
rm -rf "${{ github.workspace }}/*"
|
||||
|
||||
- name: Checkout SerenityOS/serenity
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Checkout linusg/libjs-test262
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: linusg/libjs-test262
|
||||
path: libjs-test262
|
||||
|
||||
- name: Checkout linusg/libjs-website
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: linusg/libjs-website
|
||||
path: libjs-website
|
||||
|
||||
- name: Checkout tc39/test262
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: tc39/test262
|
||||
path: test262
|
||||
|
||||
- name: Checkout tc39/test262-parser-tests
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: tc39/test262-parser-tests
|
||||
path: test262-parser-tests
|
||||
|
|
2
.github/workflows/manpages.yml
vendored
2
.github/workflows/manpages.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
runs-on: ubuntu-22.04
|
||||
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: r-lib/actions/setup-pandoc@v1
|
||||
with:
|
||||
pandoc-version: '2.13'
|
||||
|
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
PVS_STUDIO_ANALYSIS_ARCH: i686
|
||||
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: "Configure PVS-Studio Repository"
|
||||
run: |
|
||||
|
|
|
@ -15,7 +15,7 @@ jobs:
|
|||
SONAR_SERVER_URL: "https://sonarcloud.io"
|
||||
SONAR_ANALYSIS_ARCH: i686
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||
|
||||
|
|
2
.github/workflows/twitter.yml
vendored
2
.github/workflows/twitter.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '14'
|
||||
|
|
Loading…
Reference in a new issue