diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e85f2e6..f8d33c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Publish Release - uses: Leomotors/auto-publish-release@main + uses: leomotors/auto-publish-release@main with: githubToken: ${{ secrets.GITHUB_TOKEN }} tag: ${{ github.ref }} @@ -33,20 +33,21 @@ jobs: - uses: actions/checkout@v4 name: Check out code - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . file: Dockerfile push: true tags: ghcr.io/carelessdev/bots-gulag:${{ github.ref_name }},ghcr.io/carelessdev/bots-gulag:latest + platforms: linux/amd64,linux/arm64 cache-from: type=gha cache-to: type=gha,mode=max diff --git a/bun.lockb b/bun.lockb index c67351b..12fb3f7 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index c5d478b..75b1bf3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bots-gulag", - "version": "3.3.0", + "version": "3.3.3", "description": "Bots", "repository": "https://github.com/CarelessDev/bots-gulag", "type": "module", @@ -20,14 +20,14 @@ "devDependencies": { "@leomotors/config": "0.11.0", "@trivago/prettier-plugin-sort-imports": "4.3.0", - "@typescript-eslint/eslint-plugin": "6.13.2", - "@typescript-eslint/parser": "6.13.2", - "eslint": "8.55.0", + "@typescript-eslint/eslint-plugin": "6.15.0", + "@typescript-eslint/parser": "6.15.0", + "eslint": "8.56.0", "eslint-config-prettier": "9.1.0", - "eslint-plugin-import": "2.29.0", - "eslint-plugin-prettier": "5.0.1", + "eslint-plugin-import": "2.29.1", + "eslint-plugin-prettier": "5.1.1", "eslint-plugin-sort-destructure-keys": "1.5.0", - "prettier": "3.1.0", - "typescript": "5.3.2" + "prettier": "3.1.1", + "typescript": "5.3.3" } }