Skip to content

Commit b019667

Browse files
authored
Merge pull request #32 from derogab/dev
v1.6.0
2 parents 615b1ce + 9055f13 commit b019667

File tree

4 files changed

+143
-34
lines changed

4 files changed

+143
-34
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ updates:
1111
directory: '/'
1212
target-branch: 'dev'
1313
schedule:
14-
interval: 'weekly'
14+
interval: 'daily'
15+
assignees:
16+
- 'derogab'
1517
labels:
1618
- 'dependencies'
1719

@@ -20,6 +22,8 @@ updates:
2022
directory: '/'
2123
target-branch: 'dev'
2224
schedule:
23-
interval: 'weekly'
25+
interval: 'daily'
26+
assignees:
27+
- 'derogab'
2428
labels:
2529
- 'dependencies'

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test & Build
1+
name: Build & Push Docker Image
22

33
# This workflow uses actions that are not certified by GitHub.
44
# They are provided by a third-party and are governed by
@@ -69,7 +69,7 @@ jobs:
6969
# https://github.com/docker/login-action
7070
- name: Log into registry ${{ env.REGISTRY }}
7171
if: github.event_name != 'pull_request'
72-
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
72+
uses: docker/login-action@v1
7373
with:
7474
registry: ${{ env.REGISTRY }}
7575
username: ${{ github.actor }}
@@ -79,14 +79,14 @@ jobs:
7979
# https://github.com/docker/metadata-action
8080
- name: Extract Docker metadata
8181
id: meta
82-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
82+
uses: docker/metadata-action@v3
8383
with:
8484
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
8585

8686
# Build and push Docker image with Buildx (don't push on PR)
8787
# https://github.com/docker/build-push-action
8888
- name: Build and push Docker image
89-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
89+
uses: docker/build-push-action@v2
9090
with:
9191
context: .
9292
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6

package-lock.json

Lines changed: 131 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clownbot",
3-
"version": "1.5.2",
3+
"version": "1.6.0",
44
"description": "A telegram bot to cheer up conversations in own chat groups",
55
"main": "bot.js",
66
"scripts": {
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"fs": "0.0.1-security",
2424
"giphy-api": "^2.0.2",
25-
"telegraf": "^3.39.0",
25+
"telegraf": "^4.4.2",
2626
"yaml": "^1.10.2"
2727
},
2828
"engines": {

0 commit comments

Comments
 (0)