chore(deps): update helm release redis to v20 #513
This file contains 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: CI | |
on: | |
push: | |
paths: | |
- ".github/workflows/mod_downloader.yaml" | |
- "docker-images/mod-downloader/**" | |
env: | |
IMAGE: ghcr.io/giganticminecraft/mod-downloader | |
jobs: | |
lint-and-test: | |
name: Lint and test application | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'docker-images/mod-downloader/go.mod' | |
cache-dependency-path: 'docker-images/mod-downloader/go.sum' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.60 | |
working-directory: docker-images/mod-downloader | |
build-image: | |
name: Build docker image (and publish on master) | |
needs: [lint-and-test] | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
working-directory: docker-images/mod-downloader | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE }} | |
tags: | | |
type=sha,prefix=sha-,suffix=,format=short | |
type=schedule,pattern={{date 'YYYYMMDD'}} | |
- name: Build (and push if on main) | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./docker-images/mod-downloader/ | |
builder: ${{ steps.buildx.outputs.name }} | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
# すべてのビルドステージのすべてのレイヤーをキャッシュして欲しいのでmode=max | |
cache-to: type=gha,mode=max |