Build Debian #629
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: Build Debian | |
env: | |
TZ: Asia/Shanghai | |
GO_VERSION: 1.24 | |
on: | |
schedule: | |
- cron: '0 12 * * 5' | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: build god image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
- name: install task | |
run: | | |
echo "install task" | |
go install github.com/go-task/task/v3/cmd/task@latest | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GHCRIO }} | |
- name: Login DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
# - name: Build debian | |
# uses: docker/build-push-action@v6 | |
# with: | |
# context: debian | |
# platforms: linux/amd64,linux/arm64 | |
# push: true | |
# pull: true | |
# tags: | | |
# ghcr.io/ysicing/debian | |
# ysicing/debian | |
# ttl.sh/ysicing/debian | |
- name: build debian | |
run: | | |
task debian | |
- name: Trivy vulnerability scanner debian | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'ghcr.io/ysicing/debian' | |
format: 'github' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH' |