Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
toelke committed Jan 29, 2024
1 parent 257ba13 commit 2dc3dc1
Show file tree
Hide file tree
Showing 3 changed files with 456 additions and 453 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
Expand Down
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ def feed(self):
else:
if post['reblog']['url'] is not None:
fe.link(href=post['reblog']['url'])
fe.id(post['reblog']['uri'])
fe.title(f"Post by {post['account']['username']} at {post['created_at']}")
fe.content(content="".join(render_post(post)), type="CDATA")

Expand Down
Loading

0 comments on commit 2dc3dc1

Please sign in to comment.