From 6cd59b7c612368692367a76b6e2401819886eed3 Mon Sep 17 00:00:00 2001 From: "Paulo S. Costa" Date: Thu, 20 Oct 2022 09:24:56 -0700 Subject: [PATCH] Add @latest tag to GitHub Actions example (#662) --- docs/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 3f3ad463..b3d3a5d9 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -36,14 +36,14 @@ If you want to run ``nox`` within `GitHub Actions`_, you can use the ``wntrblm/n # setup nox with all active CPython and PyPY versions provided by # the GitHub Actions environment i.e. # python-versions: "3.7, 3.8, 3.9, 3.10, pypy-3.7, pypy-3.8, pypy-3.9" - - uses: wntrblm/nox + - uses: wntrblm/nox@latest # setup nox only for a given list of python versions # Limitations: # - Version specifiers shall be supported by actions/setup-python # - You can specify up-to 20 versions # - There can only be one "major.minor" per interpreter i.e. "3.7.0, 3.7.1" is invalid - - uses: wntrblm/nox + - uses: wntrblm/nox@latest with: python-versions: "2.7, 3.5, 3.11-dev, pypy-3.9"