Skip to content

Commit

Permalink
Maint/codeql upgrade (#1189)
Browse files Browse the repository at this point in the history
### What kind of change does this PR introduce?
Make use of latest CodeQL github action. v1 was being deprecated.

### Does this PR introduce a breaking change?
no
  • Loading branch information
Zeitsperre committed Sep 20, 2022
2 parents 0d5c393 + 8dd0b47 commit 790a622
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -39,10 +39,10 @@ jobs:
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
3 changes: 2 additions & 1 deletion HISTORY.rst
Expand Up @@ -4,7 +4,7 @@ History

0.39.0 (unreleased)
-------------------
Contributors to this version: Trevor James Smith (:user:`Zeitsperre`).
Contributors to this version: Trevor James Smith (:user:`Zeitsperre`), Abel Aoun (:user:`bzah`).

New features and enhancements
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -26,6 +26,7 @@ Internal changes
* The documentation build now relies on `sphinx-codeautolink` and `sphinx-copybutton`. (:pull:`1182`).
* Many docstrings did not fully adhere to the `numpy docstring format <https://numpydoc.readthedocs.io/en/latest/format.html>`_. Fields and entries for many classes and functions have been adjusted to adhere better. (:pull:`1182`).
* The xdoctest namespace now provides access to session-scoped ``{variable}_dataset`` accessors, as well as a ``path_to_atmos_file`` object. These can be used for running doctests on all variables made in the pytest ``atmosds()`` fixture. (:pull:`1882`).
* Upgrade CodeQL github action to v2 (:issue:`1188`, :pull:`1189`).

0.38.0 (2022-09-06)
-------------------
Expand Down

0 comments on commit 790a622

Please sign in to comment.