From 370be6b0d69c65dc86951863f356d4a1fad6bd7f Mon Sep 17 00:00:00 2001
From: Tom Fleet <tomfleet2018@gmail.com>
Date: Thu, 20 Oct 2022 18:05:57 +0100
Subject: [PATCH 1/2] Point action docs to 2022.8.7 not latest

---
 docs/tutorial.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/tutorial.rst b/docs/tutorial.rst
index b3d3a5d9..7d526011 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@latest
+    - uses: wntrblm/nox@2022.8.7
 
     # 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@latest
+    - uses: wntrblm/nox@2022.8.7
       with:
           python-versions: "2.7, 3.5, 3.11-dev, pypy-3.9"
 

From 568a21a0eab200c5f6ed40b6c684ca51e9b6c378 Mon Sep 17 00:00:00 2001
From: Tom Fleet <tomfleet2018@gmail.com>
Date: Sat, 22 Oct 2022 14:37:31 +0100
Subject: [PATCH 2/2] Add clarification on the tag in tutorial.rst

---
 docs/tutorial.rst | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/tutorial.rst b/docs/tutorial.rst
index 7d526011..cb3163eb 100644
--- a/docs/tutorial.rst
+++ b/docs/tutorial.rst
@@ -36,6 +36,7 @@ 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"
+    # this uses version 2022.8.7 but any Nox tag will work here
     - uses: wntrblm/nox@2022.8.7
 
     # setup nox only for a given list of python versions
@@ -43,6 +44,7 @@ If you want to run ``nox`` within `GitHub Actions`_, you can use the ``wntrblm/n
     # - 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
+    # this uses version 2022.8.7 but any Nox tag will work here
     - uses: wntrblm/nox@2022.8.7
       with:
           python-versions: "2.7, 3.5, 3.11-dev, pypy-3.9"