diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 45 | ||||
-rw-r--r-- | .github/workflows/build-image.yml | 17 |
2 files changed, 7 insertions, 55 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 74d64620e..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,45 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: npm - directory: '/' - schedule: - interval: weekly - open-pull-requests-limit: 99 - allow: - - dependency-type: direct - - - package-ecosystem: bundler - directory: '/' - schedule: - interval: weekly - open-pull-requests-limit: 99 - allow: - - dependency-type: direct - - - package-ecosystem: github-actions - directory: '/' - schedule: - interval: weekly - open-pull-requests-limit: 99 - allow: - - dependency-type: direct - - - package-ecosystem: docker - directory: '/' - schedule: - interval: weekly - open-pull-requests-limit: 99 - ignore: - - dependency-name: 'moritzheiber/ruby-jemalloc' - update-types: - # only suggest patch releases for ruby and needs to sync with .ruby-version - - 'version-update:semver-minor' - - dependency-name: 'node' - update-types: - # only node minor releases allowed unless .nvmrc major is changed - - 'version-update:semver-major' diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index c567cd9c3..c254418ea 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -4,14 +4,13 @@ on: push: branches: - 'main' - tags: - - '*' pull_request: paths: - .github/workflows/build-image.yml - Dockerfile permissions: contents: read + packages: write jobs: build-image: @@ -28,20 +27,18 @@ jobs: - uses: docker/setup-buildx-action@v2 - uses: docker/login-action@v2 with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} if: github.event_name != 'pull_request' - uses: docker/metadata-action@v4 id: meta with: - images: tootsuite/mastodon - flavor: | - latest=auto + images: ghcr.io/${{ github.repository_owner }}/mastodon tags: | + type=raw,value=latest,enable={{is_default_branch}} type=edge,branch=main - type=pep440,pattern={{raw}} - type=pep440,pattern=v{{major}}.{{minor}} - type=ref,event=pr + type=sha,prefix=,format=long - uses: docker/build-push-action@v4 with: context: . |