1 Commits

Author SHA1 Message Date
dependabot[bot]
5bedf74972 ci: bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-05 03:54:32 +00:00
2 changed files with 1 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ jobs:
] ]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set variables - name: Set variables
run: | run: |

View File

@@ -203,7 +203,6 @@ class TinyGsmModem {
if (check_signal) { thisModem().getSignalQuality(); } if (check_signal) { thisModem().getSignalQuality(); }
if (thisModem().isNetworkConnected()) { return true; } if (thisModem().isNetworkConnected()) { return true; }
delay(250); delay(250);
esp_task_wdt_reset();
} }
return false; return false;
} }