Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
- branch-*
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
BUILD_TYPE: issue
steps:
Expand All @@ -39,17 +39,17 @@ jobs:
with:
java-version: 1.8
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up Python 3.7
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Cache Python packages
uses: actions/cache@v2
uses: actions/cache@v4
id: pythoncache
with:
path: /home/runner/.cache/pip
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ on:
jobs:
deploy:
name: Deploy to Maven Central and PyPI
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up Python 3.7
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Cache Python packages
uses: actions/cache@v2
uses: actions/cache@v4
id: pythoncache
with:
path: /home/runner/.cache/pip
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

create-release:
name: Draft GitHub release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [ deploy ]
steps:
- name: Create release
Expand All @@ -89,4 +89,4 @@ jobs:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: true
prerelease: true
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>au.csiro.aehrc.variant-spark</groupId>
<artifactId>variant-spark_2.12</artifactId>
<version>0.5.3-SNAPSHOT</version>
<version>0.5.4</version>
<packaging>jar</packaging>

<name>variant-spark</name>
Expand Down