From fbb10cbb41f5ff1aa9514239d013cc9da434f26c Mon Sep 17 00:00:00 2001 From: Krrish Sehgal <133865424+krrish-sehgal@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:52:50 +0530 Subject: [PATCH] removed set-ouput which was deprecated --- .github/workflows/ci-cd.yml | 5 +++-- blt/urls.py | 6 +----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 5e5cde4f3..ed248ee02 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -39,12 +39,13 @@ jobs: - name: Get Poetry cache directory id: poetry-cache - run: echo "::set-output name=dir::$(poetry config cache-dir)" + # run: echo "::set-output name=dir::$(poetry config cache-dir)" + run: echo "POETRY_CACHE_DIR=$(poetry config cache-dir)" >> $GITHUB_ENV - name: Cache Poetry dependencies uses: actions/cache@v3 with: - path: ${{ steps.poetry-cache.outputs.dir }} + path: ${{ env.POETRY_CACHE_DIR }} key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} restore-keys: | ${{ runner.os }}-poetry- diff --git a/blt/urls.py b/blt/urls.py index 844d08776..4899fe18d 100644 --- a/blt/urls.py +++ b/blt/urls.py @@ -571,15 +571,11 @@ path("api/timelogsreport/", website.views.TimeLogListAPIView, name="timelogsreport"), path("time-logs/", website.views.TimeLogListView, name="time_logs"), path("sizzle-daily-log/", website.views.sizzle_daily_log, name="sizzle_daily_log"), - path( - "blogs/", include("blog.urls")), + path("blogs/", include("blog.urls")), path( "user-sizzle-report//", - website.views.user_sizzle_report, - name="user_sizzle_report", - , ), ]