From 98088cbe8dc5bbce5bb6003ee9f17aff35d5b109 Mon Sep 17 00:00:00 2001 From: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com> Date: Mon, 6 Feb 2023 15:20:21 -0500 Subject: [PATCH] refactor: use github output files instead of set-output (#9) fixes: #8 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index d03f1dc..4704884 100644 --- a/action.yml +++ b/action.yml @@ -44,7 +44,7 @@ runs: - name: Set pip cache directory path id: pip-cache-dir-path run: | - echo "::set-output name=dir::$(pip cache dir)" + echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT shell: bash - name: Restore pip cache @@ -64,7 +64,7 @@ runs: - name: Find if requirements.txt if exists id: find-requirements-txt run: | - echo "::set-output name=file::$(ls requirements.txt)" + echo "file=$(ls requirements.txt)" >> $GITHUB_OUTPUT shell: bash - name: Install requirements.txt