Skip to content
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
6 changes: 3 additions & 3 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@v6
- uses: actions/checkout@v7

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

# Clone repository and set everything for building of RPMs
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

# This step is required so Tito can properly read git history
# See https://github.com/actions/checkout/issues/766
Expand Down