From f8ad1b977ed040f19ae59f6c7625ecc005c922e4 Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 14 Mar 2023 12:05:14 -0800 Subject: [PATCH 1/2] Replace deprecated set-output usage in CI --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 051131733d12..974ef371851d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -248,7 +248,7 @@ jobs: # different and we need to rebuild. - name: Get latest lib/vscode rev id: vscode-rev - run: echo "::set-output name=rev::$(git rev-parse HEAD:./lib/vscode)" + run: echo "rev=$(git rev-parse HEAD:./lib/vscode)" >> $GITHUB_OUTPUT # We need to rebuild when we have a new version of Code, when any of # the patches changed, or when the code-server version changes (since From f45a8aad0b9cb08a7a89076ddfe0a32a0aa8e250 Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 14 Mar 2023 12:05:28 -0800 Subject: [PATCH 2/2] Update tj-actions/changed-files CI is saying it uses Node 12 and that Node 12 actions are deprecated. --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 974ef371851d..fd73da0dc7a7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -45,7 +45,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v26.1 + uses: tj-actions/changed-files@v35 with: files: | docs/** @@ -76,7 +76,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v26.1 + uses: tj-actions/changed-files@v35 with: files: | ci/helm-chart/** @@ -107,7 +107,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v26.1 + uses: tj-actions/changed-files@v35 with: files: | **/*.ts @@ -163,7 +163,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v26.1 + uses: tj-actions/changed-files@v35 with: files: | **/*.ts