Skip to content

Commit

Permalink
automation: use latest oVirt actions
Browse files Browse the repository at this point in the history
Recently GitHub started failing on deprecated upload artifacts actions:

```
Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
```

Signed-off-by: Tomáš Golembiovský <[email protected]>
  • Loading branch information
nyoxi authored and sandrobonazzola committed Oct 18, 2024
1 parent 02c4735 commit 3c651e4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@ jobs:
matrix:
distro: [el8stream, el9stream]
steps:
- uses: actions/checkout@v2
- uses: ovirt/checkout-action@main
with:
fetch-depth: 0
- name: Mark repository as safe
run: git config --global --add safe.directory "$(pwd)"
- name: Check patch
run: ./automation/check-patch.sh
- name: Upload artifacts
uses: ovirt/upload-rpms-action@v1
uses: ovirt/upload-rpms-action@main
with:
directory: ${{ env.EXPORT_DIR }}
distro: ${{ matrix.distro }}

0 comments on commit 3c651e4

Please sign in to comment.