chore(deps): update trufflesecurity/trufflehog action to v3.76.3 (#70) #194
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: nix | |
on: | |
pull_request: | |
branches: [ "main" ] | |
push: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ github.token }} | |
- run: nix flake check -L --show-trace --keep-going | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ github.token }} | |
- run: nix fmt | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ github.token }} | |
- uses: cachix/cachix-action@v15 | |
continue-on-error: true | |
with: | |
name: vault-auth-tee | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
extraPullNames: nixsgx | |
- name: nix build | |
run: nix run github:nixos/nixpkgs/nixos-23.11#nixci | |
- name: nix docker image | |
run: | | |
nix build .#container-vault-auth-tee | |
docker load -i result | |
- name: Log in to Docker Hub | |
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USER }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and Push Container | |
uses: docker/build-push-action@v5 | |
with: | |
tags: matterlabsrobot/vault-auth-tee:latest | |
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} |