Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab1fb57943 | |||
| cb45cf13d3 | |||
| 72e0c98ae9 | |||
| 5599816742 | |||
| a566589d82 | |||
| 5ca88540e8 | |||
| f40f161a49 | |||
| bf3429d53f | |||
| ba9bd71f9a | |||
| f53e6ccdc3 | |||
| e92fb4f913 | |||
| 1bc6c5c078 | |||
| 9b9f758c8e | |||
| 9aaa5a45bb | |||
| b3df06cff8 | |||
| 56c3cf98b8 | |||
| d6d6a690e2 | |||
| d634c4659f | |||
| 06287d9857 | |||
| 813a007fa8 | |||
| 86aa7b0f05 | |||
| b160cf0f8b | |||
| e6aa8c4a72 | |||
| c0fc66096e |
@@ -17,7 +17,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.2
|
||||
- name: Docker meta
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5.5.1
|
||||
@@ -34,7 +34,7 @@ jobs:
|
||||
type=semver,pattern={{version}}
|
||||
type=sha
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3.6.1
|
||||
uses: docker/setup-buildx-action@v3.7.1
|
||||
- name: Login to Harbor
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3.3.0
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
|
||||
|
||||
# - name: Build and push
|
||||
# uses: docker/build-push-action@v6.7.0
|
||||
# uses: docker/build-push-action@v6.9.0
|
||||
# with:
|
||||
# context: ./Docker/
|
||||
# push: ${{ github.event_name != 'pull_request' }}
|
||||
|
||||
@@ -11,14 +11,14 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.merge_commit_sha }}
|
||||
fetch-depth: '0'
|
||||
|
||||
- name: Create Release Tag
|
||||
id: taggerFinal
|
||||
uses: anothrNick/github-tag-action@1.70.0
|
||||
uses: anothrNick/github-tag-action@1.71.0
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.REPO_PUSH_TOKEN }}
|
||||
WITH_V: true
|
||||
@@ -44,7 +44,7 @@ jobs:
|
||||
type=semver,pattern={{version}}
|
||||
type=sha
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3.6.1
|
||||
uses: docker/setup-buildx-action@v3.7.1
|
||||
- name: Login to Harbor
|
||||
uses: docker/login-action@v3.3.0
|
||||
with:
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
password: ${{ secrets.HARBOR_PASSWORD }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6.7.0
|
||||
uses: docker/build-push-action@v6.9.0
|
||||
with:
|
||||
context: ./Docker/
|
||||
push: true
|
||||
|
||||
@@ -11,14 +11,14 @@ stages:
|
||||
##- push_dockerhub
|
||||
|
||||
build:
|
||||
image: docker:27.2.0-dind
|
||||
image: docker:27.4.0-dind
|
||||
stage: build
|
||||
only:
|
||||
refs:
|
||||
- tags
|
||||
- branches
|
||||
services:
|
||||
- name: docker:27.2.0-dind
|
||||
- name: docker:27.4.0-dind
|
||||
command: ["--tls=false"]
|
||||
variables:
|
||||
DOCKER_DRIVER: overlay2
|
||||
@@ -31,7 +31,7 @@ build:
|
||||
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
|
||||
|
||||
release:
|
||||
image: node:20.17.0-alpine3.19
|
||||
image: node:22.11.0-alpine3.19
|
||||
stage: release
|
||||
only:
|
||||
refs:
|
||||
@@ -57,10 +57,10 @@ release:
|
||||
- CHANGELOG.md
|
||||
|
||||
push local:
|
||||
image: docker:27.2.0-dind
|
||||
image: docker:27.4.0-dind
|
||||
stage: push_local
|
||||
services:
|
||||
- name: docker:27.2.0-dind
|
||||
- name: docker:27.4.0-dind
|
||||
command: ["--tls=false"]
|
||||
variables:
|
||||
DOCKER_DRIVER: overlay2
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM python:3.12-alpine
|
||||
FROM python:3.13-alpine
|
||||
LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)"
|
||||
|
||||
ARG BUILD_DATE
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
paho-mqtt==2.1.0
|
||||
bottle==0.13.1
|
||||
bottle==0.13.2
|
||||
defusedxml==0.7.1
|
||||
|
||||
Reference in New Issue
Block a user