Skip to content

Bump the github-actions group with 2 updates #545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected]
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/[email protected]
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/[email protected]
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 }}