Skip to content

Commit

Permalink
Updating to v4 for checkout and coverage actions
Browse files Browse the repository at this point in the history
GitHub warning prompted this change:
  Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20:
  actions/checkout@v3, codecov/codecov-action@v3.
  Node.js 16 actions are deprecated. For more information see:
  https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
asgibson committed Mar 15, 2024
1 parent a477b9b commit a37160f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up OnAIR test environment
uses: conda-incubator/setup-miniconda@v3
with:
Expand All @@ -32,4 +32,4 @@ jobs:
shell: bash -l {0}
run: coverage report --skip-empty
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

0 comments on commit a37160f

Please sign in to comment.