Skip to content

Commit a6e2c32

Browse files
authored
Merge branch 'main' into gunnar/fix_gulpfile_to_not_mangle_jars
2 parents 240d042 + d7a2906 commit a6e2c32

File tree

7 files changed

+298
-253
lines changed

7 files changed

+298
-253
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Get Time for BUILD_ID
3333
id: time
@@ -41,7 +41,7 @@ jobs:
4141
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
4242

4343
- name: Setup Node version
44-
uses: actions/setup-node@v4
44+
uses: actions/setup-node@v6
4545
with:
4646
node-version: 16
4747
cache: 'npm'
@@ -50,7 +50,7 @@ jobs:
5050
run: npm ci
5151

5252
- name: Download Bazel JDT Language Server extension
53-
uses: dawidd6/action-download-artifact@v8
53+
uses: dawidd6/action-download-artifact@v11
5454
with:
5555
run_id: ${{ github.event.workflow_run.id }}
5656
name: server

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Get Time for BUILD_ID
3232
id: time
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
4141

4242
- name: Set up JDK
43-
uses: actions/setup-java@v4
43+
uses: actions/setup-java@v5
4444
with:
4545
java-version: '17'
4646
distribution: 'temurin'
@@ -75,7 +75,7 @@ jobs:
7575
run: cat ~/.m2/toolchains.xml
7676

7777
- name: Setup Node version
78-
uses: actions/setup-node@v4
78+
uses: actions/setup-node@v6
7979
with:
8080
node-version: 22
8181
cache: 'npm'
@@ -99,7 +99,7 @@ jobs:
9999
options: "-screen 0 1600x1200x24"
100100

101101
- name: Upload Test Results
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v5
103103
if: always()
104104
with:
105105
name: test-results-${{ matrix.os }}
@@ -111,7 +111,7 @@ jobs:
111111
!test/projects/**/*
112112
113113
- name: Upload screenshots on failure
114-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v5
115115
if: failure()
116116
with:
117117
name: screenshots-${{ matrix.os }}
@@ -120,7 +120,7 @@ jobs:
120120
test/logs
121121
122122
- name: Upload Bazel JDT Language Server extension
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
if: success() && matrix.os == 'ubuntu-latest'
125125
with:
126126
name: server
@@ -134,7 +134,7 @@ jobs:
134134
# needed for publishing test results from forks
135135
steps:
136136
- name: Upload
137-
uses: actions/upload-artifact@v4
137+
uses: actions/upload-artifact@v5
138138
with:
139139
name: ci-event-file
140140
path: ${{ github.event_path }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Get Time for BUILD_ID
2727
id: time
@@ -35,7 +35,7 @@ jobs:
3535
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
3636

3737
- name: Setup Node version
38-
uses: actions/setup-node@v4
38+
uses: actions/setup-node@v6
3939
with:
4040
node-version: 22
4141
cache: 'npm'

.github/workflows/test-results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Download and Extract Artifacts
24-
uses: dawidd6/action-download-artifact@v8
24+
uses: dawidd6/action-download-artifact@v11
2525
with:
2626
run_id: ${{ github.event.workflow_run.id }}
2727
name: (test-results.*|ci-event-file)

0 commit comments

Comments
 (0)