diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-11-22 16:44:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 16:44:08 +0100 |
commit | 6e6f1e448967f38d15c2b83264e34f310806d555 (patch) | |
tree | a6a4ca7c2908613749f28651b38a474fb9dca9ca | |
parent | 2b65a4e05ec5a534dbb700f4e15da0c7ade9ca78 (diff) |
GitHub Actions: fix a warning (#1807)
```
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/
```
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7bcddba1..75c01a9fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: with: fetch-depth: 0 - name: Set up Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.9" - name: Install Ubuntu Prerequisites @@ -86,7 +86,7 @@ jobs: with: fetch-depth: 0 - name: Set up Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.9" - name: Install Ubuntu Prerequisites |