From 26822d0be94ca12282ddb71f593b4dd5692d5fa7 Mon Sep 17 00:00:00 2001 From: Conor McNamara Date: Sat, 11 Mar 2023 19:48:59 +0000 Subject: [PATCH] Change CD external HTTP req action --- .github/workflows/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 94e32f3..028119a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,13 +26,13 @@ jobs: FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} - name: Update Firestore database with train data - uses: fjogeleit/http-request-action@v1 + uses: satak/webrequest-action@master with: - url: 'https://us-central1-irishrailtracker.cloudfunctions.net/postLiveTrainData' - method: 'GET' + url: https://us-central1-irishrailtracker.cloudfunctions.net/postLiveTrainData + method: GET - name: Update Firestore database with station data - uses: fjogeleit/http-request-action@v1 + uses: satak/webrequest-action@master with: - url: 'https://us-central1-irishrailtracker.cloudfunctions.net/postStationData' - method: 'GET' \ No newline at end of file + url: https://us-central1-irishrailtracker.cloudfunctions.net/postStationData + method: GET \ No newline at end of file