From 7317f35593fd3fa1d3a63d7b71a7a4794d7196f5 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Wed, 3 Jul 2024 10:06:15 +0500 Subject: [PATCH 1/2] fix: replace deprecated github actions --- .github/workflows/migrations-check-mysql8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/migrations-check-mysql8.yml b/.github/workflows/migrations-check-mysql8.yml index 1267ebb5da..cb56cde758 100644 --- a/.github/workflows/migrations-check-mysql8.yml +++ b/.github/workflows/migrations-check-mysql8.yml @@ -32,7 +32,7 @@ jobs: - name: Get pip cache dir id: pip-cache-dir run: | - echo "::set-output name=dir::$(pip cache dir)" + echo "dir=$(pip cache dir)" >> GITHUB_OUTPUT - name: Cache pip dependencies id: cache-dependencies From 2fdcaa4de7ba5df5662ba1d0e844823819c9631b Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Wed, 3 Jul 2024 10:08:55 +0500 Subject: [PATCH 2/2] fix: replace deprecated github actions --- .github/workflows/migrations-check-mysql8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/migrations-check-mysql8.yml b/.github/workflows/migrations-check-mysql8.yml index cb56cde758..c7b07241d7 100644 --- a/.github/workflows/migrations-check-mysql8.yml +++ b/.github/workflows/migrations-check-mysql8.yml @@ -32,7 +32,7 @@ jobs: - name: Get pip cache dir id: pip-cache-dir run: | - echo "dir=$(pip cache dir)" >> GITHUB_OUTPUT + echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: Cache pip dependencies id: cache-dependencies