From 5aa4a6a58bbb34d01c3563c0b8f075d1addf832f Mon Sep 17 00:00:00 2001 From: Dima Tisnek Date: Tue, 7 Feb 2023 15:17:58 +0900 Subject: [PATCH] Bump up setup-python Bump up setup-python to v4, because v3 triggers this warning: Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Github states that > ... and plan to fully disable them on 31st May 2023. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8cf200..6484859 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 - uses: pre-commit/action@v3.0.0 ```