diff options
| author | seth <[email protected]> | 2024-01-26 05:45:59 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-01-26 06:04:21 -0500 |
| commit | ef5b24fe66ea39607abfc1a43f5cc25471596052 (patch) | |
| tree | 400394aac5b87e64445ef3710ade7ac4650d5897 /.github | |
| parent | 90c83b4694150bdcfe4fcac1c55fcfdef17c3612 (diff) | |
actions: don't use nixos/nix container
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 4 | ||||
| -rw-r--r-- | .github/workflows/flakehub-publish.yaml | 4 | ||||
| -rw-r--r-- | .github/workflows/update-lock.yaml | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6d530a9..be0ae47 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,6 @@ jobs: test-module: name: Test module runs-on: ubuntu-latest - container: nixos/nix:sha256:b8ea88f763f33dfda2317b55eeda3b1a4006692ee29e60ee54ccf6d07348c598 # 2.19.3 permissions: contents: read @@ -19,6 +18,9 @@ jobs: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@cd46bde16ab981b0a7b2dce0574509104543276e # v9 + - name: Run test script run: | set -eux diff --git a/.github/workflows/flakehub-publish.yaml b/.github/workflows/flakehub-publish.yaml index f707375..f6d8a99 100644 --- a/.github/workflows/flakehub-publish.yaml +++ b/.github/workflows/flakehub-publish.yaml @@ -10,7 +10,6 @@ jobs: publish: name: Publish runs-on: ubuntu-latest - container: nixos/nix:sha256:b8ea88f763f33dfda2317b55eeda3b1a4006692ee29e60ee54ccf6d07348c598 # 2.19.3 permissions: contents: read @@ -20,6 +19,9 @@ jobs: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@cd46bde16ab981b0a7b2dce0574509104543276e # v9 + - name: Push to Flakehub uses: DeterminateSystems/flakehub-push@b441737e7d01e044d7b60a3240fb81cbf827bee0 # v3 with: diff --git a/.github/workflows/update-lock.yaml b/.github/workflows/update-lock.yaml index 9a3628f..67cee0e 100644 --- a/.github/workflows/update-lock.yaml +++ b/.github/workflows/update-lock.yaml @@ -10,7 +10,6 @@ jobs: update: name: Update runs-on: ubuntu-latest - container: nixos/nix:sha256:b8ea88f763f33dfda2317b55eeda3b1a4006692ee29e60ee54ccf6d07348c598 # 2.19.3 permissions: contents: write @@ -20,6 +19,9 @@ jobs: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@cd46bde16ab981b0a7b2dce0574509104543276e # v9 + - name: Create new branch id: branch run: | |
