Skip to content

Commit 358fe67

Browse files
committed
Fixed bucket autoprovision or pre existing selection
1 parent 3c5429d commit 358fe67

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/build.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Get changed files
2020
id: changed-files
21-
uses: tj-actions/changed-files@v37
21+
uses: tj-actions/changed-files@v42
2222
with:
2323
dir_names: "true"
2424
since_last_remote_commit: true
@@ -63,7 +63,7 @@ jobs:
6363
matrix: ${{fromJson(needs.matrix.outputs.plugin)}}
6464

6565
steps:
66-
- uses: actions/checkout@v3
66+
- uses: actions/checkout@v4
6767
with:
6868
fetch-depth: 0
6969

@@ -82,17 +82,17 @@ jobs:
8282
8383
- name: Check if Dockerfile exists
8484
id: check_dockerfile
85-
uses: andstor/file-existence-action@v2
85+
uses: andstor/file-existence-action@v3
8686
with:
8787
files: "${{ matrix.plugin }}/task/Dockerfile"
8888

8989
- name: Set up QEMU
9090
if: ${{ steps.check_dockerfile.outputs.files_exists == 'true' }}
91-
uses: docker/setup-qemu-action@v2
91+
uses: docker/setup-qemu-action@v3
9292

9393
- name: Set up Docker Buildx
9494
if: ${{ steps.check_dockerfile.outputs.files_exists == 'true' }}
95-
uses: docker/setup-buildx-action@v2
95+
uses: docker/setup-buildx-action@v3
9696

9797
- name: Login to DockerHub
9898
if: ${{ steps.check_dockerfile.outputs.files_exists == 'true' }}
@@ -103,15 +103,15 @@ jobs:
103103

104104
- name: Login to GitHub container Registry
105105
if: ${{ steps.check_dockerfile.outputs.files_exists == 'true' }}
106-
uses: docker/login-action@v2
106+
uses: docker/login-action@v3
107107
with:
108108
registry: ghcr.io
109109
username: ${{ github.actor }}
110110
password: ${{ secrets.GITHUB_TOKEN }}
111111

112112
- name: Build and push
113113
if: ${{ steps.check_dockerfile.outputs.files_exists == 'true' }}
114-
uses: docker/build-push-action@v3
114+
uses: docker/build-push-action@v5
115115
with:
116116
context: ${{ matrix.plugin }}/task
117117
push: true
@@ -120,7 +120,7 @@ jobs:
120120
121121
- name: Update README in DockerHub
122122
if: ${{ steps.check_dockerfile.outputs.files_exists == 'true' && env.branch == 'main' }}
123-
uses: peter-evans/dockerhub-description@v3
123+
uses: peter-evans/dockerhub-description@v4
124124
with:
125125
username: ${{ secrets.DOCKERHUB_USERNAME }}
126126
password: ${{ secrets.DOCKERHUB_TOKEN }}

http-device/gui/http-device-settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ <h1 class="m-n font-thin h3 text-black">HTTP Device</h1>
8181
</div>
8282
</div>
8383
</div>
84-
<div ng-switch-when="true">
84+
<div ng-switch-when="false">
8585
<div class="row wrapper-xs">
8686
<label class="col-sm-4 col-md-2 control-label"><i class="fa fa-database m-r-xs text-muted"></i>Assign Bucket <i class="fa fa-info-circle text-muted" uib-popover="Associate the device callback write to an existing Bucket." popover-trigger="'mouseenter'"></i></label>
8787
<div class="col-sm-8 col-md-10">

http-device/plugin.json

+1
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@
5050
}
5151
}
5252
}
53+

0 commit comments

Comments
 (0)