Skip to content

Commit 4cb9649

Browse files
authored
Merge branch 'main' into lhutt/refactor_java_extension
2 parents 5bb2091 + 747d4ae commit 4cb9649

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@v5
44+
uses: actions/setup-node@v6
4545
with:
4646
node-version: 16
4747
cache: 'npm'

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
run: cat ~/.m2/toolchains.xml
7676

7777
- name: Setup Node version
78-
uses: actions/setup-node@v5
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@v5
38+
uses: actions/setup-node@v6
3939
with:
4040
node-version: 22
4141
cache: 'npm'

0 commit comments

Comments
 (0)