Skip to content

Commit

Permalink
Update main.yml to use v4 action
Browse files Browse the repository at this point in the history
  • Loading branch information
marcschefer authored Sep 20, 2024
1 parent ce12954 commit 7217db8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
id: build
uses: astrorama/actions/[email protected]
- name: Upload RPM to GitHub
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os-type }}${{ matrix.os-version }}
path: ${{ steps.build.outputs.rpm-dir }}/*.rpm
Expand Down Expand Up @@ -93,21 +93,21 @@ jobs:
container: ${{ matrix.os-type }}:${{ matrix.os-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
uses: astrorama/actions/setup-dependencies@v3
with:
dependency-list: .github/workflows/test-dependencies.txt
- name: Download RPM
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ${{ matrix.os-type }}${{ matrix.os-version }}
- name: Install SourceXtractor++
run: yum install -y SourceXtractorPlusPlus*.x86_64.rpm
- name: Run tests
run: ./.github/workflows/run-litmus.sh
- name: Upload reports and logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os-type }}${{ matrix.os-version }}-test-results
path: /tmp/sourcex/
Expand Down

0 comments on commit 7217db8

Please sign in to comment.