Skip to content

Commit 3309adc

Browse files
committed
Update Actions to v4
1 parent a4ee2e0 commit 3309adc

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.github/workflows/maven.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v3
20-
- name: Set up JDK 17
21-
uses: actions/setup-java@v3
19+
- uses: actions/checkout@v4
20+
- name: Set up JDK 22
21+
uses: actions/setup-java@v4
2222
with:
23-
java-version: '17'
23+
java-version: '22'
2424
distribution: 'temurin'
2525
cache: maven
2626
- name: Cache Maven packages
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.m2
3030
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -44,11 +44,11 @@ jobs:
4444
runs-on: ubuntu-latest
4545
needs: build-bundles
4646
steps:
47-
- uses: actions/checkout@v3
48-
- name: Set up JDK 17
49-
uses: actions/setup-java@v3
47+
- uses: actions/checkout@v4
48+
- name: Set up JDK 22
49+
uses: actions/setup-java@v4
5050
with:
51-
java-version: '17'
51+
java-version: '22'
5252
distribution: 'temurin'
5353
cache: maven
5454
- name: Build plugins with Tycho
@@ -58,11 +58,11 @@ jobs:
5858
runs-on: ubuntu-latest
5959
needs: build-bundles
6060
steps:
61-
- uses: actions/checkout@v3
62-
- name: Set up JDK 17
63-
uses: actions/setup-java@v3
61+
- uses: actions/checkout@v4
62+
- name: Set up JDK 2
63+
uses: actions/setup-java@v4
6464
with:
65-
java-version: '17'
65+
java-version: '22'
6666
distribution: 'temurin'
6767
cache: maven
6868
- name: Install GPG key

neoemf-utils/p2/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020

2121
<properties>
2222
<tycho-plugin.version>4.0.9</tycho-plugin.version>
23+
<compare.url>http://download.eclipse.org/modeling/emf/compare/updates/releases/3.3</compare.url>
2324
</properties>
2425

2526
<repositories>
2627
<repository>
2728
<id>emf-compare</id>
2829
<layout>p2</layout>
29-
<url>https://download.eclipse.org/modeling/emf/compare/updates/releases/3.3/R202406060900/</url>
30+
<url>${compare.url}</url>
3031
</repository>
3132
<repository>
3233
<id>2024-12</id>

0 commit comments

Comments
 (0)