From dca6f30940149b26356add0eaf7875501ab7fbb0 Mon Sep 17 00:00:00 2001 From: TejasAmle Date: Mon, 22 Jun 2026 03:35:53 +0000 Subject: [PATCH] docs(ci): update outdated action versions and image in CI examples - Bump actions/checkout and actions/setup-python from v2 to v4 (v2 is deprecated by GitHub and will trigger deprecation warnings) - Update Azure Pipelines vmImage from ubuntu-16.04 to ubuntu-22.04 (ubuntu-16.04 reached EOL in April 2021 and is no longer available as a GitHub-hosted runner) - Fix Tox link in Travis CI section from tox.readthedocs.io to tox.wiki (the official documentation home since 2022) Signed-off-by: TejasAmle --- docs/ci.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ci.md b/docs/ci.md index 520839420d..0400865565 100644 --- a/docs/ci.md +++ b/docs/ci.md @@ -27,11 +27,11 @@ jobs: python-version: ["3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: path: molecule_demo - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -83,7 +83,7 @@ script: - molecule test ``` -A `.travis.yml` using [Tox](https://tox.readthedocs.io/en/latest) as +A `.travis.yml` using [Tox](https://tox.wiki/en/latest/) as described below. ```yaml @@ -187,7 +187,7 @@ trigger: - main pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-22.04 steps: - checkout: git://project-name/role-name