reviewed security warnings (#830) #589
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Master change | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| update_release_draft: | |
| name: Update release draft description | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: release-drafter/release-drafter@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| push_to_registry: | |
| name: Push latest Docker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v6 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3.12.0 | |
| - name: Login to GitHub Packages Docker Registry | |
| uses: docker/login-action@v3.7.0 | |
| with: | |
| registry: docker.pkg.github.com | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Push to GitHub Packages | |
| uses: docker/build-push-action@v6.18.0 | |
| with: | |
| push: false | |
| tags: innogames/slack-bot:latest | |
| reports_docs: | |
| name: Update Reports, Code coverage report and docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| check-latest: true | |
| go-version: stable | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Goreportcard | |
| uses: creekorful/goreportcard-action@v1.0 | |
| - name: Test | |
| run: make test-coverage | |
| - name: Upload Coverage | |
| uses: codecov/codecov-action@v5 |