Skip to content

Commit abe9a4c

Browse files
ci: cleanup github actions (eclipse-theia#11845)
The commit updates the `github actions` workflows to remove deprecation warnings, and cleans-up the logs. Signed-off-by: vince-fugnitto <vincent.fugnitto@ericsson.com>
1 parent 432ee41 commit abe9a4c

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/ci-cd.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424

2525
- name: Use Node.js 16.x
26-
uses: actions/setup-node@v1
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: 16.x
2929
registry-url: 'https://registry.npmjs.org'
3030

3131
- name: Use Python 3.x
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: '3.x'
3535

@@ -60,16 +60,16 @@ jobs:
6060

6161
steps:
6262
- name: Checkout
63-
uses: actions/checkout@v2
63+
uses: actions/checkout@v3
6464

6565
- name: Use Node.js ${{ matrix.node }}
66-
uses: actions/setup-node@v1
66+
uses: actions/setup-node@v3
6767
with:
6868
node-version: ${{ matrix.node }}
6969
registry-url: 'https://registry.npmjs.org'
7070

7171
- name: Use Python 3.x
72-
uses: actions/setup-python@v2
72+
uses: actions/setup-python@v4
7373
with:
7474
python-version: '3.x'
7575

@@ -113,18 +113,18 @@ jobs:
113113

114114
steps:
115115
- name: Checkout
116-
uses: actions/checkout@v2
116+
uses: actions/checkout@v3
117117
with:
118118
fetch-depth: 0 # To fetch all history for all branches and tags. (Will be required for caching with lerna: https://github.com/markuplint/markuplint/pull/111)
119119

120120
- name: Use Node.js 14.x
121-
uses: actions/setup-node@v1
121+
uses: actions/setup-node@v3
122122
with:
123123
node-version: '14.x'
124124
registry-url: 'https://registry.npmjs.org'
125125

126126
- name: Use Python 3.x
127-
uses: actions/setup-python@v2
127+
uses: actions/setup-python@v4
128128
with:
129129
python-version: '3.x'
130130

.github/workflows/license-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ jobs:
2828

2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
fetch-depth: 2
3434

3535
- name: Use Node.js ${{ matrix.node }}
36-
uses: actions/setup-node@v1
36+
uses: actions/setup-node@v3
3737
with:
3838
node-version: ${{ matrix.node }}
3939
registry-url: 'https://registry.npmjs.org'
4040

4141
- name: Use Java ${{ matrix.java }}
42-
uses: actions/setup-java@v2
42+
uses: actions/setup-java@v3
4343
with:
4444
distribution: 'adopt'
4545
java-version: ${{ matrix.java }}

.github/workflows/playwright.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424

2525
- name: Use Node.js "16.x"
26-
uses: actions/setup-node@v1
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: "16.x"
2929
registry-url: "https://registry.npmjs.org"
3030

3131
- name: Use Python 3.x
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: "3.x"
3535

.github/workflows/set-milestone-on-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
- id: compute-milestone
3030
run: |
3131
export THEIA_CORE_VERSION=$(node -p "require(\"./packages/core/package.json\").version")

.github/workflows/translation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
uses: actions/checkout@v3
1414

1515
- name: Use Node.js 16.x
16-
uses: actions/setup-node@v1
16+
uses: actions/setup-node@v3
1717
with:
1818
node-version: 16.x
1919
registry-url: "https://registry.npmjs.org"
2020

2121
- name: Use Python 3.x
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: "3.x"
2525

0 commit comments

Comments
 (0)