[READ-ONLY] Mirror of https://github.com/maybeanerd/MagiBot. MagiBot - the community building discord bot that adds joinsounds to your voice channels! discord.gg/2Evcf4T
bot bots community discord gaming hacktoberfest sound
1

Configure Feed

Select the types of activity you want to include in your feed.

chore(deps): pin dependencies (#1685)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

authored by

renovate[bot]
renovate[bot]
and committed by
GitHub
(Jun 2, 2026, 5:27 PM UTC) a40ee787 accc08f4

+10 -10
+6 -6
.github/workflows/docker-image.yml
··· 14 14 packages: write 15 15 steps: 16 16 - name: Checkout 17 - uses: actions/checkout@v6 17 + uses: actions/checkout@v6.0.3 18 18 - name: Docker meta 19 19 id: metadata 20 - uses: docker/metadata-action@v6 20 + uses: docker/metadata-action@v6.1.0 21 21 with: 22 22 images: | 23 23 ghcr.io/${{ github.repository }} 24 24 - name: Set up QEMU 25 - uses: docker/setup-qemu-action@v4 25 + uses: docker/setup-qemu-action@v4.1.0 26 26 - name: Set up Docker Buildx 27 - uses: docker/setup-buildx-action@v4 27 + uses: docker/setup-buildx-action@v4.1.0 28 28 - name: Login to GitHub Container Registry 29 29 if: github.event_name != 'pull_request' 30 - uses: docker/login-action@v4 30 + uses: docker/login-action@v4.2.0 31 31 with: 32 32 registry: ghcr.io 33 33 username: ${{ github.actor }} 34 34 password: ${{ github.token }} 35 35 - name: Build and push 36 - uses: docker/build-push-action@v7 36 + uses: docker/build-push-action@v7.2.0 37 37 with: 38 38 context: . 39 39 platforms: linux/amd64,linux/arm64
+2 -2
.github/workflows/gitleaks.yml
··· 11 11 name: gitleaks 12 12 runs-on: ubuntu-latest 13 13 steps: 14 - - uses: actions/checkout@v6 14 + - uses: actions/checkout@v6.0.3 15 15 with: 16 16 fetch-depth: 0 17 - - uses: gitleaks/gitleaks-action@v2 17 + - uses: gitleaks/gitleaks-action@v2.3.9 18 18 env: 19 19 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 20 20 # GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}} # Only required for Organizations, not personal accounts.
+2 -2
.github/workflows/linting.yml
··· 13 13 runs-on: ubuntu-latest 14 14 15 15 steps: 16 - - uses: actions/checkout@v6 16 + - uses: actions/checkout@v6.0.3 17 17 - name: Use Node.js 18 - uses: actions/setup-node@v6 18 + uses: actions/setup-node@v6.4.0 19 19 with: 20 20 node-version: 22.22.3 21 21 - name: npm ci