Skip to content

Commit fb92108

Browse files
authored
PADD v3.11.1 (#355)
2 parents 81aeac9 + 70826ce commit fb92108

7 files changed

+12
-13
lines changed

.github/workflows/codespell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
-
1212
name: Checkout repository
13-
uses: actions/checkout@v3.5.2
13+
uses: actions/checkout@v4.1.0
1414
-
1515
name: Spell-Checking
1616
uses: codespell-project/actions-codespell@master

.github/workflows/editorconfig-checker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
name: editorconfig-checker
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3.5.2
12+
- uses: actions/checkout@v4.1.0
1313
- uses: editorconfig-checker/action-editorconfig-checker@main # current tag v1.0.0 is really out-of-date
1414
- run: editorconfig-checker

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v3.4.0
43+
uses: actions/checkout@v4.1.0
4444
- name: Remove 'stale' label
4545
run: gh issue edit ${{ github.event.issue.number }} --remove-label ${{ env.stale_label }}
4646
env:

.github/workflows/sync-back-to-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Syncing branches
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3.5.2
14+
uses: actions/checkout@v4.1.0
1515
- name: Opening pull request
1616
run: gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'Internal'
1717
env:

.github/workflows/version_bump.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo "latest_tag=$LATEST_TAG" >> $GITHUB_ENV
2020
2121
- name: Checkout code
22-
uses: actions/checkout@v3.5.2
22+
uses: actions/checkout@v4.1.0
2323
with:
2424
ref: 'development'
2525

.stickler.yml

-7
This file was deleted.

padd.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export LC_NUMERIC=C
1515
############################################ VARIABLES #############################################
1616

1717
# VERSION
18-
padd_version="v3.11.0"
18+
padd_version="v3.11.1"
1919

2020
# LastChecks
2121
LastCheckVersionInformation=$(date +%s)
@@ -160,6 +160,9 @@ GetSystemInformation() {
160160
# System uptime
161161
system_uptime_raw=$(uptime)
162162

163+
# reset $cpu variable
164+
unset cpu
165+
163166
# CPU temperature
164167
if [ -d "/sys/devices/platform/coretemp.0/hwmon/" ]; then
165168
cpu=$(cat "$(find /sys/devices/platform/coretemp.0/hwmon/ -maxdepth 2 -name "temp1_input" 2>/dev/null | head -1)" 2>/dev/null)
@@ -441,6 +444,9 @@ GetVersionInformation() {
441444
docker_version_converted="$(VersionConverter "${DOCKER_VERSION}")"
442445
docker_version_latest_converted="$(VersionConverter "${GITHUB_DOCKER_VERSION}")"
443446

447+
# Note: the version comparison will fail for any Docker tag not following a 'YYYY.MM.VV' scheme
448+
# e.g. 'nightly', 'beta', 'v6-pre-alpha' and might set a false out_of_date_flag
449+
# As those versions are not meant to be used in production, we ignore this small bug
444450
if [ "${docker_version_converted}" -lt "${docker_version_latest_converted}" ]; then
445451
out_of_date_flag="true"
446452
docker_version_heatmap=${red_text}

0 commit comments

Comments
 (0)