Bump peter-evans/create-pull-request from 6 to 7 #38
Workflow file for this run
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: Tests for managed bounds | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
extra-substituters = https://tek.cachix.org | |
extra-trusted-public-keys = tek.cachix.org-1:+sdc73WFq8aEKnrVv5j/kuhmnW2hQJuqdPJF5SnaCBk= | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: tek | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- run: rm -rf /opt/hostedtoolcache | |
- run: git config --global user.name hix | |
- run: git config --global user.email [email protected] | |
- run: nix run .#test-managed |