From 1a0587893123827808e933dd10ac6c156ed1d4c6 Mon Sep 17 00:00:00 2001 From: Lars Gyrup Brink Nielsen Date: Sun, 29 Sep 2024 23:12:57 +0200 Subject: [PATCH] ci: migrate `::set-output` command (#18) ## CI - Migrate the deprecated `::set-output` command to the `GITHUB_OUTPUT` environment variable See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/?WT.mc_id=DT-MVP-5003831 --- .github/workflows/website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 246709b..ac19677 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -25,7 +25,7 @@ jobs: - name: Variable-Yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Cache Yarn cache directory uses: actions/cache@v4 with: