Skip to content

Commit bd04f84

Browse files
committed
ucloud: update action/cache due to deprecation and drop
1 parent 346f808 commit bd04f84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/client-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v3
3333

3434
- name: '♻ Caching dependencies'
35-
uses: actions/cache@v3.3.1
35+
uses: actions/cache@v4.2.2
3636
id: cache
3737
with:
3838
path: ~/cache/bin/

src/arduino_iot_cloud/ucloud.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ class InvalidStateError(Exception):
2121
try:
2222
from arduino_iot_cloud._version import __version__
2323
except (ImportError, AttributeError):
24-
__version__ = "1.3.3"
24+
__version__ = "1.5.0"
2525

2626
# Server/port for basic auth.
2727
_DEFAULT_SERVER = "iot.arduino.cc"
2828

2929
# Default port for cert based auth and basic auth.
30-
_DEFAULT_PORT = (8883, 8884)
30+
_DEFAULT_PORT = (8885, 8884)
3131

3232

3333
class DoneException(Exception):

0 commit comments

Comments
 (0)