Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update versions of github actions. #15

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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/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