Skip to content

Commit 2d4ef6a

Browse files
committed
Merge branch 'master' into develop
2 parents 956df92 + d20b72c commit 2d4ef6a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .github/workflows/build-and-push.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ jobs:
7373
!startsWith(github.ref, 'refs/heads/feature/') &&
7474
!contains(github.ref, '.dev') &&
7575
!contains(github.ref, 'rc')
76-
uses: docker/login-action@v3.0.0
76+
uses: docker/login-action@v3.1.0
7777
with:
7878
username: ${{ secrets.DOCKERHUB_USERNAME }}
7979
password: ${{ secrets.DOCKERHUB_TOKEN }}
8080
- name: Build and push
8181
id: docker_build
82-
uses: docker/build-push-action@v5.1.0
82+
uses: docker/build-push-action@v5.3.0
8383
with:
8484
push: |
8585
${{ github.actor != 'dependabot[bot]' &&
@@ -138,7 +138,7 @@ jobs:
138138
- name: Checkout
139139
uses: actions/checkout@v4
140140
- name: Docker Hub Description # https://github.com/peter-evans/dockerhub-description
141-
uses: peter-evans/dockerhub-description@v3
141+
uses: peter-evans/dockerhub-description@v4
142142
with:
143143
username: ${{ secrets.DOCKERHUB_USERNAME }}
144144
password: ${{ secrets.DOCKERHUB_PASSWORD }}

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1717

1818

19-
FROM python:3.12.1-slim-bullseye
19+
FROM python:3.12.2-slim-bullseye
2020

2121
ADD . /jetson_stats
2222

Diff for: jtop/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
__copyright__ = "(c) 2024, Raffaello Bonghi"
3232
# Version package
3333
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#choosing-a-versioning-scheme
34-
__version__ = "4.2.6"
34+
__version__ = "4.2.7"
3535
# EOF

0 commit comments

Comments
 (0)