From 0089e3fb44a939bcfd281fc1b6e31183bff23492 Mon Sep 17 00:00:00 2001 From: gruve-p Date: Wed, 9 Feb 2022 19:19:15 +0100 Subject: [PATCH] pyenv 2.2.4 (#319) --- README.rst | 14 +++++++------- dist/index.js | 14 +++++++------- src/defaults.ts | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.rst b/README.rst index d166f167f..2adfceb0d 100644 --- a/README.rst +++ b/README.rst @@ -15,7 +15,7 @@ This GitHub Action allows using pyenv in your build. Features: ========= -- Installs pyenv ``2.0.0``. +- Installs pyenv ``2.2.4``. - Exports `PYENV_ROOT `_ environment variable. - Injects ``$PYENV_ROOT/bin`` in the PATH. - Injects `pyenv shims `_ in the PATH. @@ -56,7 +56,7 @@ each of them and run pytest. steps: - uses: actions/checkout@v2 - name: Install python version - uses: gabrielfalcao/pyenv-action@v5 + uses: gabrielfalcao/pyenv-action@v9 with: default: "${{ matrix.python }}" command: pip install -U pip # upgrade pip after installing python @@ -82,7 +82,7 @@ Enable multiple python versions in your github-action name: install pyenv steps: - name: setup pyenv - uses: "gabrielfalcao/pyenv-action@v5" + uses: "gabrielfalcao/pyenv-action@v9" with: default: 3.7.2 versions: 3.6.8, 3.5.7 @@ -119,7 +119,7 @@ Example: .. code:: yaml - name: setup pyenv - uses: "gabrielfalcao/pyenv-action@v5" + uses: "gabrielfalcao/pyenv-action@v9" with: default: 3.7.5 @@ -139,7 +139,7 @@ Example: .. code:: yaml - name: setup pyenv - uses: "gabrielfalcao/pyenv-action@v5" + uses: "gabrielfalcao/pyenv-action@v9" with: versions: 3.6.4, 3.7.2 @@ -158,7 +158,7 @@ Example: .. code:: yaml - name: setup pyenv - uses: "gabrielfalcao/pyenv-action@v5" + uses: "gabrielfalcao/pyenv-action@v9" with: versions: 3.6.4, 3.7.2 command: | @@ -194,7 +194,7 @@ Example: steps: - name: setup pyenv id: pyenv_installation - uses: "gabrielfalcao/pyenv-action@v5" + uses: "gabrielfalcao/pyenv-action@v9" - name: debug pyenv run: echo ${{ steps.pyenv_installation.outputs.pyenv_root }} diff --git a/dist/index.js b/dist/index.js index 9a7ae3354..6385eb963 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9444,7 +9444,7 @@ function wrappy (fn, cb) { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.PYENV_VERSION = void 0; -exports.PYENV_VERSION = '2.0.0'; +exports.PYENV_VERSION = '2.2.4'; /***/ }), @@ -10050,7 +10050,7 @@ module.exports = require("zlib");; /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; -/******/ +/******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache @@ -10063,7 +10063,7 @@ module.exports = require("zlib");; /******/ // no module.loaded needed /******/ exports: {} /******/ }; -/******/ +/******/ /******/ // Execute the module function /******/ var threw = true; /******/ try { @@ -10072,18 +10072,18 @@ module.exports = require("zlib");; /******/ } finally { /******/ if(threw) delete __webpack_module_cache__[moduleId]; /******/ } -/******/ +/******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } -/******/ +/******/ /************************************************************************/ /******/ /* webpack/runtime/compat */ -/******/ +/******/ /******/ __webpack_require__.ab = __dirname + "/";/************************************************************************/ /******/ // module exports must be returned from runtime so entry inlining is disabled /******/ // startup /******/ // Load entry module and return exports /******/ return __webpack_require__(3941); /******/ })() -; \ No newline at end of file +; diff --git a/src/defaults.ts b/src/defaults.ts index 17dcafbfe..d51460e22 100644 --- a/src/defaults.ts +++ b/src/defaults.ts @@ -1 +1 @@ -export const PYENV_VERSION: string = '2.0.0'; +export const PYENV_VERSION: string = '2.2.4';