Skip to content

Commit

Permalink
Merge pull request #9 from ennoruijters/maint/github-action-versions
Browse files Browse the repository at this point in the history
Use new github runner versions
  • Loading branch information
bobismijnnaam authored Nov 8, 2024
2 parents 3560cea + 9e918e6 commit 17b01c2
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: zulu
Expand All @@ -24,7 +24,7 @@ jobs:
sudo apt-cache show storm | grep Version | sed -e 's/Version: /STORM_VERSION=/' >> $GITHUB_ENV
sudo mkdir apt-archive
- name: APT cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: apt-archive.tar
key: ${{ runner.os }}-apt-${{ env.STORM_VERSION }}
Expand All @@ -39,11 +39,9 @@ jobs:
run: cd tests && bash test.sh --dft storm
- name: Package
run: make deb rpm 'RPMBUILD_FLAGS=--nodeps --nocheck' 'DPKG_FLAGS=-d'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: binary-packages
path: dftres-*.noarch.rpm
- uses: actions/upload-artifact@v3
with:
name: binary-packages
path: dftres_*_all.deb
name: binary-packages-${{ matrix.os }}
path: |
dftres-*.noarch.rpm
dftres_*_all.deb

0 comments on commit 17b01c2

Please sign in to comment.