From 7d6e70d51a57bb991568012e82bf27faeb0b58e9 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 13 Jan 2023 19:45:39 -0800 Subject: yoe/ci: Use actions/checkout@v3 actions/checkout@v2 uses node12 with EOL now. Replace ::set-output with $GITHUB_OUTPUT envvar ::set-output is deprecated [1] [1] https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Khem Raj --- .github/workflows/yoe.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/yoe.yml b/.github/workflows/yoe.yml index 6aa856e..a310c95 100644 --- a/.github/workflows/yoe.yml +++ b/.github/workflows/yoe.yml @@ -17,9 +17,9 @@ jobs: steps: - name: Fetch Repo Name id: repo-name - run: echo "::set-output name=value::$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" + run: echo "value=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 submodules: recursive -- cgit v1.2.3-54-g00ecf