diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 6ca3392720562d..7a430274d348da 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -17,8 +17,6 @@ jobs: - uses: actions/checkout@v2 # Install dependencies - - name: Install jq - run: sudo apt-get install jq -y - name: Install Node.js uses: actions/setup-node@v2-beta with: @@ -28,8 +26,8 @@ jobs: - name: Set variables run: | - echo "::set-env name=REPOSITORY::$(echo ${{ github.repository }} | cut -d/ -f2)" - echo "::set-env name=OWNER::${{ github.repository_owner }}" + echo "REPOSITORY=$(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV + echo "OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV # Get Pull Requests - name: Get Pull Requests diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index 81f121e2cf2ee0..7e91c8fd007284 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -57,7 +57,7 @@ jobs: - name: Extract tarball run: | tar xzf tarballs/*.tar.gz - echo "::set-env name=TAR_DIR::`basename tarballs/*.tar.gz .tar.gz`" + echo "TAR_DIR=`basename tarballs/*.tar.gz .tar.gz`" >> $GITHUB_ENV - name: Copy directories needed for testing run: | cp -r tools/node_modules $TAR_DIR/tools diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index cca9564f6c873b..3e6b0e49080653 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -35,15 +35,13 @@ jobs: uses: actions/setup-node@v2-beta with: node-version: '12' - - name: Install dependencies - run: | - sudo apt-get install jq -y - npm install -g node-core-utils@latest + - name: Install node-core-utils + run: npm install -g node-core-utils@latest - name: Set variables run: | - echo "::set-env name=REPOSITORY::$(echo ${{ github.repository }} | cut -d/ -f2)" - echo "::set-env name=OWNER::${{ github.repository_owner }}" + echo "REPOSITORY=$(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV + echo "OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV - name: Get Pull Requests uses: octokit/graphql-action@v2.x