From 02c22742d18c9c39d7f9274eb06ec91069566895 Mon Sep 17 00:00:00 2001 From: Joergi <1439809+joergi@users.noreply.github.com> Date: Fri, 4 Oct 2024 01:36:51 +0200 Subject: [PATCH] removes action (#250) * removes action and uses cat --- .github/workflows/testing-regular-issues.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/testing-regular-issues.yml b/.github/workflows/testing-regular-issues.yml index 695b61e..8418721 100644 --- a/.github/workflows/testing-regular-issues.yml +++ b/.github/workflows/testing-regular-issues.yml @@ -21,15 +21,15 @@ jobs: runs-on: ${{ matrix.os }}-latest steps: - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - - uses: pCYSl5EDgo/cat@master + - name: curl remote file output id: read_recent - with: - path: sources-for-download/regular-issues.txt + run: | + echo "ISSUE_NUMBER=$(cat sources-for-download/regular-issues.txt)" >> $GITHUB_ENV + shell: bash - run: | - echo "ISSUE_NUMBER=${{ steps.read_recent.outputs.text }}" >> $GITHUB_ENV - echo "ISSUE_MINUS_ONE=$((${{ steps.read_recent.outputs.text }}-1))" >> $GITHUB_ENV - echo "ISSUE_MINUS_FIVE=$((${{ steps.read_recent.outputs.text }}-5))" >> $GITHUB_ENV - echo "ISSUE_MINUS_SIX=$((${{ steps.read_recent.outputs.text }}-6))" >> $GITHUB_ENV + echo "ISSUE_MINUS_ONE=$((${{ env.ISSUE_NUMBER }}-1))" >> $GITHUB_ENV + echo "ISSUE_MINUS_FIVE=$((${{ env.ISSUE_NUMBER }}-5))" >> $GITHUB_ENV + echo "ISSUE_MINUS_SIX=$((${{ env.ISSUE_NUMBER }}-6))" >> $GITHUB_ENV shell: bash - name: Set OS-specific variables for Windows