Skip to content

Commit 678ff02

Browse files
committed
2 parents cc1d418 + a4d0406 commit 678ff02

File tree

5 files changed

+40
-36
lines changed

5 files changed

+40
-36
lines changed

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,28 @@ jobs:
2222
uses: actions/checkout@v3
2323

2424
- name: Log in to Docker Hub
25-
uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b
25+
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
2626
with:
2727
username: ${{ secrets.DOCKERHUB_USERNAME }}
2828
password: ${{ secrets.DOCKERHUB_PASSWORD }}
2929

3030
- name: Log in to the Container registry
31-
uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b
31+
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
3232
with:
3333
registry: ghcr.io
3434
username: ${{ github.actor }}
3535
password: ${{ secrets.GITHUB_TOKEN }}
3636

3737
- name: Extract metadata (tags, labels) for Docker
3838
id: meta
39-
uses: docker/metadata-action@69f6fc9d46f2f8bf0d5491e4aabe0bb8c6a4678a
39+
uses: docker/metadata-action@12cce9efe0d49980455aaaca9b071c0befcdd702
4040
with:
4141
images: |
4242
${{ secrets.DOCKERHUB_USERNAME }}/hullcss
4343
ghcr.io/${{ github.repository }}
4444
4545
- name: Build and push Docker images
46-
uses: docker/build-push-action@c84f38281176d4c9cdb1626ffafcd6b3911b5d94
46+
uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5
4747
with:
4848
context: .
4949
push: true

README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## HullCSS Discord Bot
77

8-
This bot is a multipurpose discord bot for The Hull Computer Science Society Discord server.
8+
This bot is a multipurpose discord bot for The Hull Computer Science Society Discord server.
99

1010
<img src="https://img.shields.io/github/workflow/status/hullcss/hullcss-discord-bot/Publish%20Docker%20image?style=for-the-badge">
1111
<img src="https://img.shields.io/badge/Discord.JS-13.10.2-blue?style=for-the-badge&logo=DISCORD" />
@@ -29,10 +29,10 @@ Alongside commands, this bot also features:
2929
* Rule agreement button embed with `#code-of-conduct`
3030

3131
---
32-
## Installation
33-
**This is a private bot used for a specific purpose within a specific discord server however if you do want to run the bot for testing purposes or deploy it to a new location. Follow the instructions below.**
32+
## Installation
33+
**This is a private bot used for a specific purpose within a specific discord server however if you do want to run the bot for testing purposes or deploy it to a new location. Follow the instructions below.**
3434

35-
### 🐋 Docker
35+
### 🐋 Docker
3636
Due to the [Publish.yml](.github/workflows/publish.yml) workflow, the newest build will automatically be pushed to dockerhub.
3737

3838
```docker
@@ -48,13 +48,17 @@ kieranr27/hullcss:main
4848
Using a tool like [Ouroboros](https://github.com/pyouroboros/ouroboros), you can automatically update containers without the need for restarts.
4949

5050
### 👷 Manual
51-
- Clone the repo
51+
- Clone the repo
5252
- Remove the `.template` from `.env.template`
5353
- Replace `INSERT DISCORD TOKEN` with your Discord token.
5454
- Run `npm i` to install packages
5555
- Run `node .` to run the bot
5656

5757
---
5858
## Contributions
59-
While this bot is maintained by [Kieran](https://github.com/KieranRobson), contributors are welcome!
60-
- Contribution guidelines are coming soon.
59+
While this bot is maintained by [Kieran](https://github.com/KieranRobson), contributors are welcome!
60+
- Contribution guidelines are coming soon.
61+
62+
## License
63+
64+
hullcss-discord-bot is licensed under the MIT License. The full license text is included in the [LICENSE](LICENSE) file in this repository. Tldr legal have a [great summary](https://www.tldrlegal.com/l/mit) of the license if you're interested.

dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.10.0
1+
FROM node:19.0.0
22
RUN mkdir -p /usr/hullcss/src
33
WORKDIR /usr/hullcss/src
44
COPY package.json /usr/hullcss/src

package-lock.json

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"license": "ISC",
1515
"dependencies": {
1616
"@discordjs/builders": "^1.3.0",
17-
"discord-api-types": "^0.37.12",
18-
"discord.js": "^13.11.0",
17+
"discord-api-types": "^0.37.14",
18+
"discord.js": "^13.12.0",
1919
"dotenv": "^16.0.3",
2020
"glob": "^7.2.3",
2121
"json-to-frontmatter-markdown": "^1.0.0"

0 commit comments

Comments
 (0)