Skip to content

Commit

Permalink
Lift deprecated CI actions
Browse files Browse the repository at this point in the history
Signed-off-by: Björn Svensson <[email protected]>
  • Loading branch information
bjosv committed Nov 4, 2024
1 parent bb078aa commit be34ac4
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 8
- uses: actions/cache@v1
distribution: temurin
- uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand All @@ -23,12 +24,12 @@ jobs:
otp-version: '23'
- name: erl
run: erl -version
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Build with Maven
run: PATH=$PATH:/home/runner/.gem/ruby/2.7/bin xvfb-run ./mvnw -B -U clean verify -P help
- uses: actions/upload-artifact@v2
run: xvfb-run ./mvnw -B -U clean verify -P help
- uses: actions/upload-artifact@v4
with:
name: P2 site
path: releng/org.erlide.site/target/repository

0 comments on commit be34ac4

Please sign in to comment.