Skip to content

Commit

Permalink
Bump the github-actions group with 2 updates (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Feb 5, 2024
1 parent 9b22456 commit 2080948
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ github.token }}
15 changes: 4 additions & 11 deletions .github/workflows/reusable-cpp-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,8 @@ jobs:
- name: Test
run: ctest -C Debug --output-on-failure --test-dir build --repeat until-pass:3 --timeout 600
- name: Upload coverage to Codecov
# Coverage uploads can be flaky, so we retry them a few times.
uses: Wandalen/wretry.action@v1.3.0
uses: codecov/codecov-action@v4
with:
action: codecov/codecov-action@v3
attempt_limit: 5
attempt_delay: 2000
with: |
fail_ci_if_error: true
flags: cpp
gcov: true
gcov_ignore: "extern/**/*"
token: ${{ secrets.token }}
fail_ci_if_error: true
flags: cpp
token: ${{ secrets.token }}
2 changes: 1 addition & 1 deletion .github/workflows/reusable-cpp-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=${{ inputs.config }} ${{ inputs.cmake-args }}
- name: Build
uses: nick-fields/retry@v2 # Windows builds with MSVC are flaky and frequently run out of heap space
uses: nick-fields/retry@v3 # Windows builds with MSVC are flaky and frequently run out of heap space
with:
timeout_minutes: 15
max_attempts: 5
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/reusable-python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,11 @@ jobs:
- name: Tests with minimal versions
run: pipx run nox -s minimums -- --cov --cov-report=xml
- name: Upload coverage to Codecov
# Coverage uploads can be flaky, so we retry them a few times.
uses: Wandalen/wretry.action@v1.3.0
uses: codecov/codecov-action@v4
with:
action: codecov/codecov-action@v3
attempt_limit: 5
attempt_delay: 2000
with: |
fail_ci_if_error: true
flags: python
token: ${{ secrets.token }}
fail_ci_if_error: true
flags: python
token: ${{ secrets.token }}

dist:
name: 📦 Check
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/reusable-python-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,8 @@ jobs:
- name: Run session
run: pipx run nox -s tests-${{ inputs.python-version }} -- --cov --cov-report=xml
- name: Upload coverage to Codecov
# Coverage uploads can be flaky, so we retry them a few times.
uses: Wandalen/wretry.action@v1.3.0
uses: codecov/codecov-action@v4
with:
action: codecov/codecov-action@v3
attempt_limit: 5
attempt_delay: 2000
with: |
fail_ci_if_error: true
flags: python
token: ${{ secrets.token }}
fail_ci_if_error: true
flags: python
token: ${{ secrets.token }}

0 comments on commit 2080948

Please sign in to comment.