diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 575811b2..e9482c47 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -36,13 +36,13 @@ jobs: run: pip install poetry - name: Cache poetry packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-build-cache-poetry-packages-${{ hashFiles('**/poetry.lock') }} - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-build-cache-npm-packages-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/pr-lint.yaml b/.github/workflows/pr-lint.yaml index 9c55fdc8..c6bc45a7 100644 --- a/.github/workflows/pr-lint.yaml +++ b/.github/workflows/pr-lint.yaml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check ticket name conforms to requirements - run: echo ${{ github.event.pull_request.head.ref }} | grep -i -E -q "((apm|niad|amb)-[0-9]+)|(dependabot\/)" + run: echo ${{ github.event.pull_request.head.ref }} | grep -i -E -q "((apm|niad|amb|flagsapi)-[0-9]+)|(dependabot\/)" - name: Grab ticket name if: contains(github.event.pull_request.head.ref, 'apm-') || contains(github.event.pull_request.head.ref, 'APM-') || contains(github.event.pull_request.head.ref, 'niad-') || contains(github.event.pull_request.head.ref, 'NIAD-') || contains(github.event.pull_request.head.ref, 'amb-') || contains(github.event.pull_request.head.ref, 'AMB-')