We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 619d7b0 commit 8eb6090Copy full SHA for 8eb6090
.github/workflows/build.yml
@@ -47,15 +47,17 @@ jobs:
47
runs-on: ubuntu-24.04
48
container:
49
image: ghcr.io/python/autoconf:2024.10.11.11293396815
50
- options: --user root
51
timeout-minutes: 60
52
needs: check_source
53
if: needs.check_source.outputs.run_tests == 'true'
54
steps:
55
- - uses: actions/checkout@v4
56
- name: Install git
57
run: |
58
apt install git -yq
+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
+ - uses: actions/checkout@v4
59
+ with:
60
+ fetch-depth: 1
61
- name: Runner image version
62
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
63
- name: Check Autoconf and aclocal versions
0 commit comments