diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2023-09-14 15:43:45 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 20:43:45 +0200 |
commit | ae0a3f65c6a71c2fe50ac64549f1a6827949744d (patch) | |
tree | 77b34f401553da60e89c637f076395e50d010722 /.github | |
parent | 38b58239e882eaa905bafa49237f0b9ca9d43569 (diff) | |
download | Nim-ae0a3f65c6a71c2fe50ac64549f1a6827949744d.tar.gz |
Fix Bisect bot (#22703)
- https://github.com/nim-lang/Nim/actions/runs/6187256704/job/16796720625#step:4:29 - https://github.com/nim-lang/Nim/issues/22699
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bisects.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/bisects.yml b/.github/workflows/bisects.yml index 362c73158..066ebc80b 100644 --- a/.github/workflows/bisects.yml +++ b/.github/workflows/bisects.yml @@ -16,7 +16,9 @@ jobs: nim-version: 'devel' - name: Install Dependencies - run: sudo apt-get install --no-install-recommends -yq valgrind + run: | + sudo apt-get -yq update + sudo apt-get install --no-install-recommends -yq valgrind - uses: juancarlospaco/nimrun-action@nim with: |