chore(package): update redis:8.2.1 docker digest to c81b61a #1992
Workflow file for this run
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: Run checks | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| packages: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| driver: docker-container | |
| - name: Build devcontainer image | |
| uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 | |
| with: | |
| cacheFrom: ghcr.io/marinatedconcrete/config-devcontainer | |
| cacheTo: ghcr.io/marinatedconcrete/config-devcontainer | |
| env: | | |
| CI=1 | |
| imageName: ghcr.io/marinatedconcrete/config-devcontainer | |
| push: filter | |
| refFilterForPush: refs/heads/main | |
| check-format: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Check formatting | |
| uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 | |
| with: | |
| cacheFrom: ghcr.io/marinatedconcrete/config-devcontainer | |
| env: | | |
| CI=1 | |
| imageName: ghcr.io/marinatedconcrete/config-devcontainer | |
| push: never | |
| runCmd: just check-format | |
| kustomization-test: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Validate configs | |
| uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 | |
| with: | |
| cacheFrom: ghcr.io/marinatedconcrete/config-devcontainer | |
| env: | | |
| CI=1 | |
| imageName: ghcr.io/marinatedconcrete/config-devcontainer | |
| push: never | |
| runCmd: just kustomization-test ${{ matrix.kustomization-test }} | |
| strategy: | |
| matrix: | |
| kustomization-test: | |
| - factorio | |
| - kube-vip | |
| - mosquitto | |
| - paperless | |
| - priorityclass | |
| - unifi-network-application | |
| lint: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Validate configs | |
| uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 | |
| with: | |
| cacheFrom: ghcr.io/marinatedconcrete/config-devcontainer | |
| env: | | |
| CI=1 | |
| imageName: ghcr.io/marinatedconcrete/config-devcontainer | |
| push: never | |
| runCmd: just lint |