Skip to content

Commit

Permalink
fix: update versions of github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jirihnidek committed Oct 22, 2024
1 parent 9260355 commit f7c60a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Create build directory
# Create build directory
Expand All @@ -41,7 +41,7 @@ jobs:
image: fedora:rawhide
options: --security-opt seccomp=unconfined
steps:
# Install git and other tools first to be able to use 'actions/checkout@v2' properly
# Install git and other tools first to be able to use 'actions/checkout@v4' properly
- name: Install required packages
run: dnf install --nogpgcheck -y tito gcc make cmake git-core

Expand All @@ -62,13 +62,13 @@ jobs:
run: tito build --test --rpm --verbose --debug -o ./rpm_build --no-cleanup

- name: Store source RPM as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Source RPM
path: ./rpm_build/*.rpm

- name: Store binary RPMs as artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Binary RPMs
# TODO: replace x86_64 with result of 'uname -m'
Expand Down

0 comments on commit f7c60a3

Please sign in to comment.