From a92477ec9a54eed0552a0b1adf4f8047aad8c6ce Mon Sep 17 00:00:00 2001 From: rlskoeser Date: Mon, 29 Jul 2024 15:08:59 -0400 Subject: [PATCH] Update github actions versions --- .github/workflows/unit_tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 13f6fde..5c593a2 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 @@ -37,7 +37,7 @@ jobs: run: pytest --cov=./ --cov-report=xml - name: Upload test coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 # Set the color of the slack message used in the next step based on the # status of the build: "danger" for failure, "good" for success, @@ -52,7 +52,7 @@ jobs: # at the organization level and available to all repositories. Only run on # scheduled builds & pushes, since PRs automatically report to Slack. - name: Report status to Slack - uses: rtCamp/action-slack-notify@master + uses: rtCamp/action-slack-notify@v2 if: ${{ always() && (github.event_name == 'schedule' || github.event_name == 'push') }} continue-on-error: true env: