Skip to content

Commit ff1dc69

Browse files
committed
Test github actions changes
1 parent 802d460 commit ff1dc69

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

.github/workflows/java.yml

+12-8
Original file line numberDiff line numberDiff line change
@@ -6,47 +6,51 @@ jobs:
66
maven-ubuntu20:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- run: sudo apt-get install protobuf-compiler
1111
- name: Set up JDK 1.8
12-
uses: actions/setup-java@v1
12+
uses: actions/setup-java@v2
1313
with:
14+
distribution: 'zulu'
1415
java-version: 1.8
1516
- name: Build with Maven
1617
run: mvn -B package --file pom.xml
1718

1819
maven-ubuntu22:
1920
runs-on: ubuntu-22.04
2021
steps:
21-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2223
- run: sudo apt-get install protobuf-compiler
2324
- name: Set up JDK 1.8
24-
uses: actions/setup-java@v1
25+
uses: actions/setup-java@v2
2526
with:
27+
distribution: 'zulu'
2628
java-version: 1.8
2729
- name: Build with Maven
2830
run: mvn -B package --file pom.xml
2931

3032
ant-ubuntu20:
3133
runs-on: ubuntu-20.04
3234
steps:
33-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
3436
- run: sudo apt-get install protobuf-compiler libprotobuf-java
3537
- name: Set up JDK 1.8
36-
uses: actions/setup-java@v1
38+
uses: actions/setup-java@v2
3739
with:
40+
distribution: 'zulu'
3841
java-version: 1.8
3942
- name: Build with Ant
4043
run: ant
4144

4245
ant-ubuntu22:
4346
runs-on: ubuntu-22.04
4447
steps:
45-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v4
4649
- run: sudo apt-get install protobuf-compiler libprotobuf-java
4750
- name: Set up JDK 1.8
48-
uses: actions/setup-java@v1
51+
uses: actions/setup-java@v2
4952
with:
53+
distribution: 'zulu'
5054
java-version: 1.8
5155
- name: Build with Ant
5256
run: ant

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Note that this is a low-level library that does only part of the
1313
encoding/decoding needed for actually writing/reading an OSM PBF file. For
1414
something more complete see [libosmium](https://osmcode.org/libosmium/).
1515

16-
[![Github Actions C Build Status](https://github.com/openstreetmap/OSM-binary/workflows/C%20CI/badge.svg?branch=master)](https://github.com/openstreetmap/OSM-binary/actions)
17-
[![Github Actions Java Build Status](https://github.com/openstreetmap/OSM-binary/workflows/Java%20CI/badge.svg?branch=master)](https://github.com/openstreetmap/OSM-binary/actions)
16+
[![Github Actions C++ CI](https://github.com/openstreetmap/OSM-binary/actions/workflows/c.yml/badge.svg)](https://github.com/openstreetmap/OSM-binary/actions/workflows/c.yml)
17+
[![Github Actions Java CI](https://github.com/openstreetmap/OSM-binary/actions/workflows/java.yml/badge.svg)](https://github.com/openstreetmap/OSM-binary/actions/workflows/java.yml)
1818
[![Packaging status](https://repology.org/badge/tiny-repos/libosmpbf.svg)](https://repology.org/project/libosmpbf/versions)
1919

2020
## Java Version

0 commit comments

Comments
 (0)