Skip to content

Commit

Permalink
github actions: move to checkout@v3
Browse files Browse the repository at this point in the history
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
  • Loading branch information
perexg committed May 19, 2022
1 parent 5f04797 commit 06ddcbe
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
dnf -y upgrade
dnf -y install @development-tools libtool bzip2
- name: Checkout
uses: actions/checkout@v2
- name: Checkout all tags
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Safe git directory
run: |
git fetch --prune --unshallow
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Modify version
run: |
mv configure.ac configure.ac.old
Expand Down Expand Up @@ -73,7 +75,7 @@ jobs:
image: ubuntu:latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Prepare environment
run: |
export DEBIAN_FRONTEND=noninteractive
Expand Down

0 comments on commit 06ddcbe

Please sign in to comment.