mirror of
				https://gitea.com/actions/setup-python.git
				synced 2025-10-31 19:58:55 +08:00 
			
		
		
		
	Compare commits
	
		
			1 Commits
		
	
	
		
			v5.3.0
			...
			error-mess
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | e283d84e0c | 
							
								
								
									
										20
									
								
								.github/workflows/e2e-cache.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/e2e-cache.yml
									
									
									
									
										vendored
									
									
								
							| @@ -21,8 +21,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x'] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup Python | ||||
| @@ -39,8 +39,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x'] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup Python | ||||
| @@ -75,8 +75,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|         python-version: ['3.9', 'pypy-3.9'] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Install poetry | ||||
| @@ -97,8 +97,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x'] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup Python | ||||
| @@ -116,8 +116,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|         python-version: ['3.9', 'pypy-3.9-v7.x'] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup Python | ||||
|   | ||||
							
								
								
									
										88
									
								
								.github/workflows/e2e-tests.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										88
									
								
								.github/workflows/e2e-tests.yml
									
									
									
									
										vendored
									
									
								
							| @@ -12,43 +12,30 @@ on: | ||||
|   workflow_dispatch: | ||||
|  | ||||
| jobs: | ||||
|   test-setup-python-older: | ||||
|     name: Test setup-python old versions | ||||
|     runs-on: ${{ matrix.operating-system }} | ||||
|     strategy: | ||||
|       matrix: | ||||
|         operating-system: | ||||
|           [ubuntu-20.04, ubuntu-22.04, windows-latest, macos-latest, macos-13] | ||||
|         python: [3.8.10, 3.8.18] | ||||
|         exclude: | ||||
|           - operating-system: ubuntu-22.04 | ||||
|             python: '3.8.10' | ||||
|           - operating-system: macos-latest | ||||
|             python: '3.8.18' | ||||
|           - operating-system: windows-latest | ||||
|             python: '3.8.18' | ||||
|     steps: | ||||
|       - name: Checkout | ||||
|         uses: actions/checkout@v4 | ||||
|  | ||||
|       - name: Run with setup-python ${{ matrix.python }} | ||||
|         id: setup-python | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: ${{ matrix.python }} | ||||
|       - name: Verify ${{ matrix.python }} | ||||
|         run: python __tests__/verify-python.py ${{ matrix.python }} | ||||
|   test-setup-python: | ||||
|     name: Test setup-python | ||||
|     runs-on: ${{ matrix.operating-system }} | ||||
|     strategy: | ||||
|       matrix: | ||||
|         operating-system: | ||||
|           [ubuntu-20.04, windows-latest, ubuntu-22.04, macos-latest, macos-13] | ||||
|         operating-system: [ubuntu-20.04, windows-latest] | ||||
|     steps: | ||||
|       - name: Checkout | ||||
|         uses: actions/checkout@v4 | ||||
|  | ||||
|       - name: Run with setup-python 3.8 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: 3.8 | ||||
|       - name: Verify 3.8 | ||||
|         run: python __tests__/verify-python.py 3.8 | ||||
|  | ||||
|       - name: Run with setup-python 3.8.10 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: 3.8.10 | ||||
|       - name: Verify 3.8.10 | ||||
|         run: python __tests__/verify-python.py 3.8.10 | ||||
|  | ||||
|       - name: Run with setup-python 3.9.13 | ||||
|         uses: ./ | ||||
|         with: | ||||
| @@ -70,43 +57,36 @@ jobs: | ||||
|       - name: Verify 3.11.9 | ||||
|         run: python __tests__/verify-python.py 3.11.9 | ||||
|  | ||||
|       - name: Run with setup-python 3.12.7 | ||||
|       - name: Run with setup-python 3.12.4 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: 3.12.7 | ||||
|       - name: Verify 3.12.7 | ||||
|         run: python __tests__/verify-python.py 3.12.7 | ||||
|           python-version: 3.12.4 | ||||
|       - name: Verify 3.12.4 | ||||
|         run: python __tests__/verify-python.py 3.12.4 | ||||
|  | ||||
|       - name: Run with setup-python 3.13.0 | ||||
|       - name: Run with setup-python 3.10 | ||||
|         id: cp310 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: 3.13.0 | ||||
|       - name: Verify 3.13.0 | ||||
|         run: python __tests__/verify-python.py 3.13.0 | ||||
|           python-version: '3.10' | ||||
|       - name: Verify 3.10 | ||||
|         run: python __tests__/verify-python.py 3.10 | ||||
|       - name: Run python-path sample 3.10 | ||||
|         run: pipx run --python '${{ steps.cp310.outputs.python-path }}' nox --version | ||||
|  | ||||
|       - name: Run with setup-python 3.13 | ||||
|         id: cp313 | ||||
|       - name: Run with setup-python ==3.8 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: '3.13' | ||||
|       - name: Verify 3.13 | ||||
|         run: python __tests__/verify-python.py 3.13 | ||||
|       - name: Run python-path sample 3.13 | ||||
|         run: pipx run --python '${{ steps.cp313.outputs.python-path }}' nox --version | ||||
|           python-version: '==3.8' | ||||
|       - name: Verify ==3.8 | ||||
|         run: python __tests__/verify-python.py 3.8 | ||||
|  | ||||
|       - name: Run with setup-python ==3.13 | ||||
|       - name: Run with setup-python <3.11 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: '==3.13' | ||||
|       - name: Verify ==3.13 | ||||
|         run: python __tests__/verify-python.py 3.13 | ||||
|  | ||||
|       - name: Run with setup-python <3.13 | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: '<3.13' | ||||
|       - name: Verify <3.13 | ||||
|         run: python __tests__/verify-python.py 3.12 | ||||
|           python-version: '<3.11' | ||||
|       - name: Verify <3.11 | ||||
|         run: python __tests__/verify-python.py 3.10 | ||||
|       - name: Test Raw Endpoint Access | ||||
|         run: | | ||||
|           curl -L https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | jq empty | ||||
|   | ||||
| @@ -2,7 +2,7 @@ name: 'Publish Immutable Action Version' | ||||
|  | ||||
| on: | ||||
|   release: | ||||
|     types: [published] | ||||
|     types: [created] | ||||
|  | ||||
| jobs: | ||||
|   publish: | ||||
| @@ -17,4 +17,6 @@ jobs: | ||||
|         uses: actions/checkout@v4 | ||||
|       - name: Publish | ||||
|         id: publish | ||||
|         uses: actions/publish-immutable-action@0.0.3 | ||||
|         uses: actions/publish-immutable-action@0.0.1 | ||||
|         with: | ||||
|           github-token: ${{ secrets.GITHUB_TOKEN }} | ||||
|   | ||||
| @@ -22,7 +22,7 @@ jobs: | ||||
|     runs-on: ubuntu-latest | ||||
|     steps: | ||||
|       - name: Update the ${{ env.TAG_NAME }} tag | ||||
|         uses: actions/publish-action@v0.3.0 | ||||
|         uses: actions/publish-action@v0.2.2 | ||||
|         with: | ||||
|           source-tag: ${{ env.TAG_NAME }} | ||||
|           slack-webhook: ${{ secrets.SLACK_WEBHOOK }} | ||||
|   | ||||
							
								
								
									
										14
									
								
								.github/workflows/test-graalpy.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								.github/workflows/test-graalpy.yml
									
									
									
									
										vendored
									
									
								
							| @@ -18,12 +18,10 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||||
|         os: [macos-latest, ubuntu-20.04, ubuntu-latest] | ||||
|         graalpy: | ||||
|           - 'graalpy-22.3' | ||||
|           - 'graalpy-23.0' | ||||
|           - 'graalpy-23.1' | ||||
|           - 'graalpy-24.1' | ||||
|           - 'graalpy-22.3' | ||||
|  | ||||
|     steps: | ||||
|       - name: Checkout | ||||
| @@ -65,8 +63,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||||
|         graalpy: ['graalpy22.3', 'graalpy23.0', 'graalpy23.1', 'graalpy24.1'] | ||||
|         os: [macos-latest, ubuntu-20.04, ubuntu-latest] | ||||
|         graalpy: ['graalpy23.0', 'graalpy22.3'] | ||||
|  | ||||
|     steps: | ||||
|       - name: Checkout | ||||
| @@ -90,14 +88,14 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, macos-latest, macos-13] | ||||
|         os: [ubuntu-latest, macos-latest] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup GraalPy and check latest | ||||
|         uses: ./ | ||||
|         id: graalpy | ||||
|         with: | ||||
|           python-version: 'graalpy-24.x' | ||||
|           python-version: 'graalpy-23.x' | ||||
|           check-latest: true | ||||
|       - name: GraalPy and Python version | ||||
|         run: python --version | ||||
|   | ||||
							
								
								
									
										18
									
								
								.github/workflows/test-pypy.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								.github/workflows/test-pypy.yml
									
									
									
									
										vendored
									
									
								
							| @@ -20,20 +20,19 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: | ||||
|           [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest] | ||||
|         pypy: | ||||
|           - 'pypy-2.7' | ||||
|           - 'pypy-3.10' | ||||
|           - 'pypy3.9' | ||||
|           - 'pypy-2.7-v7.3.17' | ||||
|           - 'pypy-3.10-v7.3.17' | ||||
|           - 'pypy-3.10-v7.3.16' | ||||
|           - 'pypy-2.7-v7.3.14' | ||||
|           - 'pypy-3.10-v7.3.15' | ||||
|           - 'pypy-3.10-v7.3.14' | ||||
|           - 'pypy-3.10-v7.3.x' | ||||
|           - 'pypy-3.10-v7.x' | ||||
|           - 'pypy-2.7-v7.3.12rc1' | ||||
|           - 'pypy-3.10-nightly' | ||||
|           - 'pypy3.10-v7.3.17' | ||||
|           - 'pypy3.10-v7.3.15' | ||||
|  | ||||
|     steps: | ||||
|       - name: Checkout | ||||
| @@ -75,8 +74,7 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: | ||||
|           [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest] | ||||
|         pypy: ['pypy2.7', 'pypy3.9', 'pypy3.10-nightly'] | ||||
|  | ||||
|     steps: | ||||
| @@ -101,7 +99,7 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup PyPy and check latest | ||||
| @@ -134,7 +132,7 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup PyPy and check latest | ||||
|   | ||||
							
								
								
									
										67
									
								
								.github/workflows/test-python.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										67
									
								
								.github/workflows/test-python.yml
									
									
									
									
										vendored
									
									
								
							| @@ -20,8 +20,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3, 3.13.0] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3] | ||||
|         exclude: | ||||
|           - os: ubuntu-22.04 | ||||
|             python: 3.8.10 | ||||
| @@ -58,8 +58,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3, 3.13.0] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3] | ||||
|         exclude: | ||||
|           - os: ubuntu-22.04 | ||||
|             python: 3.8.10 | ||||
| @@ -99,8 +99,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3, 3.13.0] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3] | ||||
|         exclude: | ||||
|           - os: ubuntu-22.04 | ||||
|             python: 3.8.10 | ||||
| @@ -138,8 +138,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, '==3.12.3', 3.13.0] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, '==3.12.3'] | ||||
|         exclude: | ||||
|           - os: ubuntu-22.04 | ||||
|             python: 3.8.10 | ||||
| @@ -182,8 +182,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3, 3.13.0] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|         python: [3.8.10, 3.9.13, 3.10.11, 3.11.9, 3.12.3] | ||||
|         exclude: | ||||
|           - os: ubuntu-22.04 | ||||
|             python: 3.8.10 | ||||
| @@ -221,21 +221,21 @@ jobs: | ||||
|         run: python -c 'import math; print(math.factorial(5))' | ||||
|  | ||||
|   setup-pre-release-version-from-manifest: | ||||
|     name: Setup 3.14.0-alpha.1 ${{ matrix.os }} | ||||
|     name: Setup 3.13.0-alpha.6 ${{ matrix.os }} | ||||
|     runs-on: ${{ matrix.os }} | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|     steps: | ||||
|       - name: Checkout | ||||
|         uses: actions/checkout@v4 | ||||
|  | ||||
|       - name: setup-python 3.14.0-alpha.1 | ||||
|       - name: setup-python 3.13.0-alpha.6 | ||||
|         id: setup-python | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: '3.14.0-alpha.1' | ||||
|           python-version: '3.13.0-alpha.6' | ||||
|  | ||||
|       - name: Check python-path | ||||
|         run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}' | ||||
| @@ -244,8 +244,8 @@ jobs: | ||||
|       - name: Validate version | ||||
|         run: | | ||||
|           $pythonVersion = (python --version) | ||||
|           if ("Python 3.14.0a1" -ne "$pythonVersion"){ | ||||
|             Write-Host "The current version is $pythonVersion; expected version is 3.14.0a1" | ||||
|           if ("Python 3.13.0a6" -ne "$pythonVersion"){ | ||||
|             Write-Host "The current version is $pythonVersion; expected version is 3.13.0a6" | ||||
|             exit 1 | ||||
|           } | ||||
|           $pythonVersion | ||||
| @@ -255,49 +255,49 @@ jobs: | ||||
|         run: python -c 'import math; print(math.factorial(5))' | ||||
|  | ||||
|   setup-dev-version: | ||||
|     name: Setup 3.14-dev ${{ matrix.os }} | ||||
|     name: Setup 3.13-dev ${{ matrix.os }} | ||||
|     runs-on: ${{ matrix.os }} | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-latest, macos-13] | ||||
|         os: [macos-latest, windows-latest, ubuntu-latest] | ||||
|     steps: | ||||
|       - name: Checkout | ||||
|         uses: actions/checkout@v4 | ||||
|  | ||||
|       - name: setup-python 3.14-dev | ||||
|       - name: setup-python 3.13-dev | ||||
|         id: setup-python | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: '3.14-dev' | ||||
|           python-version: '3.13-dev' | ||||
|  | ||||
|       - name: Check python-path | ||||
|         run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}' | ||||
|         shell: bash | ||||
|  | ||||
|       - name: Validate version | ||||
|         run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.14.') }} | ||||
|         run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.13.') }} | ||||
|         shell: bash | ||||
|  | ||||
|       - name: Run simple code | ||||
|         run: python -c 'import math; print(math.factorial(5))' | ||||
|  | ||||
|   setup-prerelease-version: | ||||
|     name: Setup 3.14 ${{ matrix.os }} | ||||
|     name: Setup 3.13 ${{ matrix.os }} | ||||
|     runs-on: ${{ matrix.os }} | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-latest, macos-13] | ||||
|         os: [macos-latest, windows-latest, ubuntu-latest] | ||||
|     steps: | ||||
|       - name: Checkout | ||||
|         uses: actions/checkout@v4 | ||||
|  | ||||
|       - name: setup-python 3.14 | ||||
|       - name: setup-python 3.13 | ||||
|         id: setup-python | ||||
|         uses: ./ | ||||
|         with: | ||||
|           python-version: '3.14' | ||||
|           python-version: '3.13' | ||||
|           allow-prereleases: true | ||||
|  | ||||
|       - name: Check python-path | ||||
| @@ -305,7 +305,7 @@ jobs: | ||||
|         shell: bash | ||||
|  | ||||
|       - name: Validate version | ||||
|         run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.14.') }} | ||||
|         run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.13.') }} | ||||
|         shell: bash | ||||
|  | ||||
|       - name: Run simple code | ||||
| @@ -317,8 +317,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13] | ||||
|         python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | ||||
|         os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | ||||
|         python: ['3.8', '3.9', '3.10', '3.11', '3.12'] | ||||
|     steps: | ||||
|       - name: Checkout | ||||
|         uses: actions/checkout@v4 | ||||
| @@ -341,8 +341,8 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|         python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup Python and check latest | ||||
| @@ -365,7 +365,7 @@ jobs: | ||||
|     strategy: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||||
|         os: [ubuntu-latest, windows-latest, macos-latest] | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Setup Python and check latest | ||||
| @@ -377,13 +377,12 @@ jobs: | ||||
|             3.10 | ||||
|             3.11 | ||||
|             3.12 | ||||
|             3.13 | ||||
|           check-latest: true | ||||
|       - name: Validate version | ||||
|         run: | | ||||
|           $pythonVersion = (python --version) | ||||
|           if ("$pythonVersion" -NotMatch "3.13"){ | ||||
|             Write-Host "The current version is $pythonVersion; expected version is 3.13" | ||||
|           if ("$pythonVersion" -NotMatch "3.12"){ | ||||
|             Write-Host "The current version is $pythonVersion; expected version is 3.12" | ||||
|             exit 1 | ||||
|           } | ||||
|           $pythonVersion | ||||
|   | ||||
							
								
								
									
										10
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								README.md
									
									
									
									
									
								
							| @@ -21,7 +21,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13'  | ||||
|     python-version: '3.10'  | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -31,7 +31,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5  | ||||
|   with: | ||||
|     python-version: 'pypy3.10'  | ||||
|     python-version: 'pypy3.9'  | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -41,7 +41,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5  | ||||
|   with: | ||||
|     python-version: 'graalpy-24.0'  | ||||
|     python-version: 'graalpy-22.3'  | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -57,7 +57,7 @@ The `python-version` input supports the [Semantic Versioning Specification](http | ||||
|  | ||||
| ## Supported architectures | ||||
|  | ||||
| Using the `architecture` input, it is possible to specify the required Python or PyPy interpreter architecture: `x86`, `x64`, or `arm64`. If the input is not specified, the architecture defaults to the host OS architecture. | ||||
| Using `architecture` input it is possible to specify the required Python or PyPy interpreter architecture: `x86` or `x64`. If the input is not specified the architecture defaults to `x64`. | ||||
|  | ||||
| ## Caching packages dependencies | ||||
|  | ||||
| @@ -76,7 +76,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.9' | ||||
|     cache: 'pip' # caching pip dependencies | ||||
| - run: pip install -r requirements.txt | ||||
| ``` | ||||
|   | ||||
| @@ -30,7 +30,7 @@ pdf2image==1.12.1 | ||||
|  | ||||
| pefile==2021.9.3; python_full_version >= '3.6.0' | ||||
|  | ||||
| pillow>=10.2.0 | ||||
| pillow==7.2 | ||||
|  | ||||
| pygments==2.6.1 | ||||
|  | ||||
|   | ||||
| @@ -13,7 +13,6 @@ import { | ||||
|   getVersionInputFromPlainFile, | ||||
|   getVersionInputFromTomlFile, | ||||
|   getNextPageUrl, | ||||
|   isGhes, | ||||
|   IS_WINDOWS, | ||||
|   getDownloadFileName | ||||
| } from '../src/utils'; | ||||
| @@ -196,41 +195,3 @@ describe('getDownloadFileName', () => { | ||||
|     } | ||||
|   }); | ||||
| }); | ||||
|  | ||||
| describe('isGhes', () => { | ||||
|   const pristineEnv = process.env; | ||||
|  | ||||
|   beforeEach(() => { | ||||
|     jest.resetModules(); | ||||
|     process.env = {...pristineEnv}; | ||||
|   }); | ||||
|  | ||||
|   afterAll(() => { | ||||
|     process.env = pristineEnv; | ||||
|   }); | ||||
|  | ||||
|   it('returns false when the GITHUB_SERVER_URL environment variable is not defined', async () => { | ||||
|     delete process.env['GITHUB_SERVER_URL']; | ||||
|     expect(isGhes()).toBeFalsy(); | ||||
|   }); | ||||
|  | ||||
|   it('returns false when the GITHUB_SERVER_URL environment variable is set to github.com', async () => { | ||||
|     process.env['GITHUB_SERVER_URL'] = 'https://github.com'; | ||||
|     expect(isGhes()).toBeFalsy(); | ||||
|   }); | ||||
|  | ||||
|   it('returns false when the GITHUB_SERVER_URL environment variable is set to a GitHub Enterprise Cloud-style URL', async () => { | ||||
|     process.env['GITHUB_SERVER_URL'] = 'https://contoso.ghe.com'; | ||||
|     expect(isGhes()).toBeFalsy(); | ||||
|   }); | ||||
|  | ||||
|   it('returns false when the GITHUB_SERVER_URL environment variable has a .localhost suffix', async () => { | ||||
|     process.env['GITHUB_SERVER_URL'] = 'https://mock-github.localhost'; | ||||
|     expect(isGhes()).toBeFalsy(); | ||||
|   }); | ||||
|  | ||||
|   it('returns true when the GITHUB_SERVER_URL environment variable is set to some other URL', async () => { | ||||
|     process.env['GITHUB_SERVER_URL'] = 'https://src.onpremise.fabrikam.com'; | ||||
|     expect(isGhes()).toBeTruthy(); | ||||
|   }); | ||||
| }); | ||||
|   | ||||
| @@ -11,7 +11,7 @@ inputs: | ||||
|     description: "Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry." | ||||
|     required: false | ||||
|   architecture: | ||||
|     description: "The target architecture (x86, x64, arm64) of the Python or PyPy interpreter." | ||||
|     description: "The target architecture (x86, x64) of the Python or PyPy interpreter." | ||||
|   check-latest: | ||||
|     description: "Set this option if you want the action to check for the latest available version that satisfies the version spec." | ||||
|     default: false | ||||
|   | ||||
							
								
								
									
										2
									
								
								dist/cache-save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/cache-save/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -81041,7 +81041,7 @@ class CacheDistributor { | ||||
|                         .split('\n') | ||||
|                         .join(',')} or ${constants_1.CACHE_DEPENDENCY_BACKUP_PATH}` | ||||
|                     : this.cacheDependencyPath.split('\n').join(','); | ||||
|                 throw new Error(`No file in ${process.cwd()} matched to [${file}], make sure you have checked out the target repository`); | ||||
|                 throw new Error(`No file in ${process.cwd()} matched to [${file}], make sure you have checked out the target repository. No cache paths were identified for ${this.packageManager} with cache-dependency-path = ${this.cacheDependencyPath}. This likely indicates no dependencies to cache. Consider removing the cache step if it's not needed`); | ||||
|             } | ||||
|             const cachePath = yield this.getCacheGlobalDirectories(); | ||||
|             core.saveState(State.CACHE_PATHS, cachePath); | ||||
|   | ||||
							
								
								
									
										8
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -90243,7 +90243,7 @@ class CacheDistributor { | ||||
|                         .split('\n') | ||||
|                         .join(',')} or ${constants_1.CACHE_DEPENDENCY_BACKUP_PATH}` | ||||
|                     : this.cacheDependencyPath.split('\n').join(','); | ||||
|                 throw new Error(`No file in ${process.cwd()} matched to [${file}], make sure you have checked out the target repository`); | ||||
|                 throw new Error(`No file in ${process.cwd()} matched to [${file}], make sure you have checked out the target repository. No cache paths were identified for ${this.packageManager} with cache-dependency-path = ${this.cacheDependencyPath}. This likely indicates no dependencies to cache. Consider removing the cache step if it's not needed`); | ||||
|             } | ||||
|             const cachePath = yield this.getCacheGlobalDirectories(); | ||||
|             core.saveState(State.CACHE_PATHS, cachePath); | ||||
| @@ -92017,11 +92017,7 @@ function validatePythonVersionFormatForPyPy(version) { | ||||
| exports.validatePythonVersionFormatForPyPy = validatePythonVersionFormatForPyPy; | ||||
| function isGhes() { | ||||
|     const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com'); | ||||
|     const hostname = ghUrl.hostname.trimEnd().toUpperCase(); | ||||
|     const isGitHubHost = hostname === 'GITHUB.COM'; | ||||
|     const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM'); | ||||
|     const isLocalHost = hostname.endsWith('.LOCALHOST'); | ||||
|     return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost; | ||||
|     return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM'; | ||||
| } | ||||
| exports.isGhes = isGhes; | ||||
| function isCacheFeatureAvailable() { | ||||
|   | ||||
| @@ -27,14 +27,14 @@ | ||||
|  | ||||
| ### Specifying a Python version | ||||
|  | ||||
| If there is a specific version of Python that you need and you don't want to worry about any potential breaking changes due to patch updates (going from `3.12.6` to `3.12.7` for example), you should specify the **exact major, minor, and patch version** (such as `3.12.6`): | ||||
| If there is a specific version of Python that you need and you don't want to worry about any potential breaking changes due to patch updates (going from `3.7.5` to `3.7.6` for example), you should specify the **exact major, minor, and patch version** (such as `3.7.5`): | ||||
|  | ||||
| ```yaml | ||||
| steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.12.6'  | ||||
|     python-version: '3.7.5'  | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -48,7 +48,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13'  | ||||
|     python-version: '3.7'  | ||||
| - run: python my_script.py | ||||
| ``` | ||||
| - There will be a single patch version already installed on each runner for every minor version of Python that is supported. | ||||
| @@ -62,7 +62,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.14.0-alpha.1' | ||||
|     python-version: '3.12.0-alpha.1' | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -73,7 +73,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.14-dev' | ||||
|     python-version: '3.12-dev' | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -86,7 +86,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '>=3.9 <3.14' | ||||
|     python-version: '>=3.9 <3.10' | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -97,7 +97,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13.0-alpha - 3.13.0' | ||||
|     python-version: '3.12.0-alpha - 3.12.0' | ||||
| - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -118,7 +118,6 @@ The version of PyPy should be specified in the format `pypy<python_version>[-v<p | ||||
| The `-v<pypy_version>` parameter is optional and can be skipped. The latest PyPy version will be used in this case. | ||||
|  | ||||
| ``` | ||||
| pypy3.10 or pypy-3.10 # the latest available version of PyPy that supports Python 3.10 | ||||
| pypy3.9 or pypy-3.9 # the latest available version of PyPy that supports Python 3.9 | ||||
| pypy2.7 or pypy-2.7 # the latest available version of PyPy that supports Python 2.7 | ||||
| pypy3.7-v7.3.3 or pypy-3.7-v7.3.3 # Python 3.7 and PyPy 7.3.3 | ||||
| @@ -136,8 +135,8 @@ jobs: | ||||
|     strategy: | ||||
|       matrix: | ||||
|         python-version: | ||||
|         - 'pypy3.10' # the latest available version of PyPy that supports Python 3.10 | ||||
|         - 'pypy3.10-v7.3.17' # Python 3.10 and PyPy 7.3.17 | ||||
|         - 'pypy3.7' # the latest available version of PyPy that supports Python 3.7 | ||||
|         - 'pypy3.7-v7.3.3' # Python 3.7 and PyPy 7.3.3 | ||||
|     steps: | ||||
|     - uses: actions/checkout@v4 | ||||
|     - uses: actions/setup-python@v5 | ||||
| @@ -161,9 +160,9 @@ jobs: | ||||
|     - uses: actions/setup-python@v5 | ||||
|       with: | ||||
|         python-version: | | ||||
|             3.11 | ||||
|             3.12 | ||||
|             3.13 | ||||
|             3.8 | ||||
|             3.9 | ||||
|             3.10 | ||||
|     - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -178,9 +177,9 @@ jobs: | ||||
|     - uses: actions/setup-python@v5 | ||||
|       with: | ||||
|         python-version: | | ||||
|             pypy-3.10-v7.3.x | ||||
|             pypy3.10-nightly | ||||
|             pypy3.9 | ||||
|             pypy-3.7-v7.3.x | ||||
|             pypy3.9-nightly | ||||
|             pypy3.8 | ||||
|     - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -195,11 +194,11 @@ jobs: | ||||
|     - uses: actions/setup-python@v5 | ||||
|       with: | ||||
|         python-version: | | ||||
|             3.11 | ||||
|             3.12 | ||||
|             pypy3.10-nightly | ||||
|             pypy3.10 | ||||
|             3.13 | ||||
|             3.8 | ||||
|             3.9 | ||||
|             pypy3.9-nightly | ||||
|             pypy3.8 | ||||
|             3.10 | ||||
|     - run: python my_script.py | ||||
| ``` | ||||
|  | ||||
| @@ -213,7 +212,7 @@ jobs: | ||||
|     runs-on: ubuntu-latest | ||||
|     strategy: | ||||
|       matrix: | ||||
|         python-version: ['3.x', 'pypy2.7', 'pypy3.8', 'pypy3.9' ] | ||||
|         python-version: [ '2.x', '3.x', 'pypy2.7', 'pypy3.8', 'pypy3.9' ] | ||||
|     name: Python ${{ matrix.python-version }} sample | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
| @@ -234,12 +233,12 @@ jobs: | ||||
|     strategy: | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, macos-latest, windows-latest] | ||||
|         python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy2.7', 'pypy3.9'] | ||||
|         python-version: ['2.7', '3.7', '3.8', '3.9', '3.10', 'pypy2.7', 'pypy3.9'] | ||||
|         exclude: | ||||
|           - os: macos-latest | ||||
|             python-version: '3.8' | ||||
|           - os: windows-latest | ||||
|             python-version: '3.8' | ||||
|             python-version: '3.6' | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|       - name: Set up Python | ||||
| @@ -285,7 +284,7 @@ steps: | ||||
|   - uses: actions/checkout@v4 | ||||
|   - uses: actions/setup-python@v5 | ||||
|     with: | ||||
|       python-version: '3.13' | ||||
|       python-version: '3.7' | ||||
|       check-latest: true | ||||
|   - run: python my_script.py | ||||
| ``` | ||||
| @@ -300,7 +299,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.9' | ||||
|     cache: 'pipenv' | ||||
| - name: Install pipenv | ||||
|   run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python | ||||
| @@ -315,7 +314,7 @@ steps: | ||||
|   run: pipx install poetry | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.9' | ||||
|     cache: 'poetry' | ||||
| - run: poetry install | ||||
| - run: poetry run pytest | ||||
| @@ -328,7 +327,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.9' | ||||
|     cache: 'pipenv' | ||||
|     cache-dependency-path: | | ||||
|       server/app/Pipfile.lock | ||||
| @@ -343,7 +342,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.9' | ||||
|     cache: 'pip' | ||||
|     cache-dependency-path: '**/requirements-dev.txt' | ||||
| - run: pip install -r subdirectory/requirements-dev.txt | ||||
| @@ -355,7 +354,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.10' | ||||
|     cache: 'pip' | ||||
|     cache-dependency-path: | | ||||
|       **/setup.cfg | ||||
| @@ -370,7 +369,7 @@ steps: | ||||
| - uses: actions/checkout@v4 | ||||
| - uses: actions/setup-python@v5 | ||||
|   with: | ||||
|     python-version: '3.13' | ||||
|     python-version: '3.11' | ||||
|     cache: 'pip' | ||||
|     cache-dependency-path: setup.py | ||||
| - run: pip install -e . | ||||
| @@ -383,7 +382,7 @@ steps: | ||||
|  | ||||
| ### `python-version` | ||||
|  | ||||
| Using **python-version** output it's possible to get the installed by action Python or PyPy version. This output is useful when the input `python-version` is given as a range (e.g. 3.8.0 - 3.12.0 ), but down in a workflow you need to operate with the exact installed version (e.g. 3.12.1).  | ||||
| Using **python-version** output it's possible to get the installed by action Python or PyPy version. This output is useful when the input `python-version` is given as a range (e.g. 3.8.0 - 3.10.0 ), but down in a workflow you need to operate with the exact installed version (e.g. 3.10.1).  | ||||
|  | ||||
| ```yaml | ||||
| jobs: | ||||
| @@ -392,10 +391,10 @@ jobs: | ||||
|     steps: | ||||
|     - uses: actions/checkout@v4 | ||||
|     - uses: actions/setup-python@v5 | ||||
|       id: cp312 | ||||
|       id: cp310 | ||||
|       with: | ||||
|         python-version: "3.8.0 - 3.12.0" | ||||
|     - run: echo '${{ steps.cp312.outputs.python-version }}' | ||||
|         python-version: "3.8.0 - 3.10.0" | ||||
|     - run: echo '${{ steps.cp310.outputs.python-version }}' | ||||
| ``` | ||||
|  | ||||
| ### `python-path` | ||||
| @@ -409,10 +408,10 @@ jobs: | ||||
|     steps: | ||||
|     - uses: actions/checkout@v4 | ||||
|     - uses: actions/setup-python@v5 | ||||
|       id: cp313 | ||||
|       id: cp310 | ||||
|       with: | ||||
|         python-version: "3.13" | ||||
|     - run: pipx run --python '${{ steps.cp313.outputs.python-path }}' nox --version | ||||
|         python-version: "3.10" | ||||
|     - run: pipx run --python '${{ steps.cp310.outputs.python-path }}' nox --version | ||||
| ``` | ||||
| ### `cache-hit` | ||||
|  | ||||
| @@ -425,11 +424,11 @@ jobs: | ||||
|     steps: | ||||
|     - uses: actions/checkout@v4 | ||||
|     - uses: actions/setup-python@v5 | ||||
|       id: cp313 | ||||
|       id: cp310 | ||||
|       with: | ||||
|         python-version: "3.13.0" | ||||
|         python-version: "3.8.0" | ||||
|         cache: "poetry" | ||||
|     - run: echo '${{ steps.cp313.outputs.cache-hit }}' # true if cache-hit occurred on the primary key | ||||
|     - run: echo '${{ steps.cp310.outputs.cache-hit }}' # true if cache-hit occurred on the primary key | ||||
| ``` | ||||
|  | ||||
| ## Environment variables | ||||
| @@ -456,11 +455,11 @@ Such a requirement on side-effect could be because you don't want your composite | ||||
|  steps: | ||||
|    - uses: actions/checkout@v4 | ||||
|    - uses: actions/setup-python@v5 | ||||
|      id: cp313 | ||||
|      id: cp310 | ||||
|      with: | ||||
|        python-version: '3.13' | ||||
|        python-version: '3.10' | ||||
|        update-environment: false | ||||
|    - run: ${{ steps.cp313.outputs.python-path }} my_script.py | ||||
|    - run: ${{ steps.cp310.outputs.python-path }} my_script.py | ||||
| ``` | ||||
| ## Available versions of Python, PyPy and GraalPy | ||||
| ### Python | ||||
| @@ -470,9 +469,9 @@ Such a requirement on side-effect could be because you don't want your composite | ||||
| - Preinstalled versions of Python in the tool cache on GitHub-hosted runners. | ||||
|     - For detailed information regarding the available versions of Python that are installed, see [Supported software](https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#supported-software). | ||||
|     - For every minor version of Python, expect only the latest patch to be preinstalled. | ||||
|     - If `3.12.1` is installed for example, and `3.12.2` is released, expect `3.12.1` to be removed and replaced by `3.12.2` in the tool cache. | ||||
|     - If the exact patch version doesn't matter to you, specifying just the major and minor versions will get you the latest preinstalled patch version. In the previous example, the version spec `3.12` will use the `3.12.2` Python version found in the cache. | ||||
|     - Use `-dev` instead of a patch number (e.g., `3.14-dev`) to install the latest patch version release for a given minor version, *alpha and beta releases included*. | ||||
|     - If `3.8.1` is installed for example, and `3.8.2` is released, expect `3.8.1` to be removed and replaced by `3.8.2` in the tool cache. | ||||
|     - If the exact patch version doesn't matter to you, specifying just the major and minor versions will get you the latest preinstalled patch version. In the previous example, the version spec `3.8` will use the `3.8.2` Python version found in the cache. | ||||
|     - Use `-dev` instead of a patch number (e.g., `3.12-dev`) to install the latest patch version release for a given minor version, *alpha and beta releases included*. | ||||
| - Downloadable Python versions from GitHub Releases ([actions/python-versions](https://github.com/actions/python-versions/releases)). | ||||
|     - All available versions are listed in the [version-manifest.json](https://github.com/actions/python-versions/blob/main/versions-manifest.json) file. | ||||
|     - If there is a specific version of Python that is not available, you can open an issue here | ||||
| @@ -486,7 +485,7 @@ Such a requirement on side-effect could be because you don't want your composite | ||||
| - Preinstalled versions of PyPy in the tool cache on GitHub-hosted runners | ||||
|   - For detailed information regarding the available versions of PyPy that are installed, see [Supported software](https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#supported-software). | ||||
|   - For the latest PyPy release, all versions of Python are cached. | ||||
|   - Cache is updated with a 1-2 week delay. If you specify the PyPy version as `pypy3.10` or `pypy-3.10`, the cached version will be used although a newer version is available. If you need to start using the recently released version right after release, you should specify the exact PyPy version using `pypy3.10-v7.3.17` or `pypy-3.10-v7.3.17`. | ||||
|   - Cache is updated with a 1-2 week delay. If you specify the PyPy version as `pypy3.7` or `pypy-3.7`, the cached version will be used although a newer version is available. If you need to start using the recently released version right after release, you should specify the exact PyPy version using `pypy3.7-v7.3.3` or `pypy-3.7-v7.3.3`. | ||||
|  | ||||
| - Downloadable PyPy versions from the [official PyPy site](https://downloads.python.org/pypy/). | ||||
|   - All available versions that we can download are listed in [versions.json](https://downloads.python.org/pypy/versions.json) file. | ||||
| @@ -597,7 +596,7 @@ jobs: | ||||
|       fail-fast: false | ||||
|       matrix: | ||||
|         os: [Ubuntu, Windows, macOS] | ||||
|         python_version: ["3.11", "3.12", "3.13"] | ||||
|         python_version: ["3.11", "3.12"] | ||||
|  | ||||
|     steps: | ||||
|       - uses: actions/checkout@v4 | ||||
|   | ||||
| @@ -32,7 +32,11 @@ abstract class CacheDistributor { | ||||
|               .join(',')} or ${CACHE_DEPENDENCY_BACKUP_PATH}` | ||||
|           : this.cacheDependencyPath.split('\n').join(','); | ||||
|       throw new Error( | ||||
|         `No file in ${process.cwd()} matched to [${file}], make sure you have checked out the target repository` | ||||
|         `No file in ${process.cwd()} matched to [${file}], make sure you have checked out the target repository. No cache paths were identified for ${ | ||||
|           this.packageManager | ||||
|         } with cache-dependency-path = ${ | ||||
|           this.cacheDependencyPath | ||||
|         }. This likely indicates no dependencies to cache. Consider removing the cache step if it's not needed` | ||||
|       ); | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -116,13 +116,7 @@ export function isGhes(): boolean { | ||||
|   const ghUrl = new URL( | ||||
|     process.env['GITHUB_SERVER_URL'] || 'https://github.com' | ||||
|   ); | ||||
|  | ||||
|   const hostname = ghUrl.hostname.trimEnd().toUpperCase(); | ||||
|   const isGitHubHost = hostname === 'GITHUB.COM'; | ||||
|   const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM'); | ||||
|   const isLocalHost = hostname.endsWith('.LOCALHOST'); | ||||
|  | ||||
|   return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost; | ||||
|   return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM'; | ||||
| } | ||||
|  | ||||
| export function isCacheFeatureAvailable(): boolean { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user