Skip to content

Commit

Permalink
removed set-ouput which was deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
krrish-sehgal committed Nov 5, 2024
1 parent 7842e66 commit fbb10cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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-
Expand Down
6 changes: 1 addition & 5 deletions blt/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/<str:username>/",

website.views.user_sizzle_report,

name="user_sizzle_report",
,
),
]

Expand Down

0 comments on commit fbb10cb

Please sign in to comment.