Skip to content

Commit

Permalink
Fix git pull
Browse files Browse the repository at this point in the history
  • Loading branch information
major committed Jan 26, 2024
1 parent 491f5d1 commit ad3a5ab
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/prepare_source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,20 @@ jobs:
needs: prepare
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:rawhide
image: quay.io/fedora/fedora:39
volumes:
- output:/output
steps:
- name: Install required packages
run: dnf -y install git mock rpm-build
run: |
echo "fastestmirror=1" >> /etc/dnf/dnf.conf
echo "max_parallel_downloads=20" >> /etc/dnf/dnf.conf
dnf -qy install git mock rpm-build
- name: Checkout repo
uses: actions/checkout@v4

- name: Ensure repo is fully updated
run: git pull --rebase
run: |
git config --global safe.directory '*'
git pull --rebase

0 comments on commit ad3a5ab

Please sign in to comment.