From 0050dd7a980c72f6afb170722a8bd621daef30ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:46:53 +0000 Subject: [PATCH] build(deps): bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [cachix/install-nix-action](https://github.com/cachix/install-nix-action), [cachix/cachix-action](https://github.com/cachix/cachix-action) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `cachix/install-nix-action` from 30 to 31 - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Changelog](https://github.com/cachix/install-nix-action/blob/master/RELEASE.md) - [Commits](https://github.com/cachix/install-nix-action/compare/v30...v31) Updates `cachix/cachix-action` from 15 to 16 - [Release notes](https://github.com/cachix/cachix-action/releases) - [Commits](https://github.com/cachix/cachix-action/compare/v15...v16) Updates `actions/create-github-app-token` from 1 to 2 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/v1...v2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: cachix/install-nix-action dependency-version: '31' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: cachix/cachix-action dependency-version: '16' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/create-github-app-token dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/check.yml | 4 ++-- .github/workflows/report-and-push.yml | 8 ++++---- .github/workflows/update.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 167c9fd..d80b764 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,14 +19,14 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: mount Nix store on larger partition # on the Linux runner `/` doesn't have enough space, but there's a `/mnt` which does. if: runner.os == 'Linux' run: | sudo mkdir /nix /mnt/nix sudo mount --bind /mnt/nix /nix - - uses: cachix/install-nix-action@v30 + - uses: cachix/install-nix-action@v31 with: nix_path: nixpkgs=channel:nixos-unstable - name: Build default package diff --git a/.github/workflows/report-and-push.yml b/.github/workflows/report-and-push.yml index 51d6a5e..67e6ca1 100644 --- a/.github/workflows/report-and-push.yml +++ b/.github/workflows/report-and-push.yml @@ -18,17 +18,17 @@ jobs: contents: write checks: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: mount Nix store on larger partition # on the Linux runner `/` doesn't have enough space, but there's a `/mnt` which does. if: runner.os == 'Linux' run: | sudo mkdir /nix /mnt/nix sudo mount --bind /mnt/nix /nix - - uses: cachix/install-nix-action@v30 + - uses: cachix/install-nix-action@v31 with: nix_path: nixpkgs=channel:nixos-unstable - - uses: cachix/cachix-action@v15 + - uses: cachix/cachix-action@v16 with: name: scarisey-public authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" @@ -37,7 +37,7 @@ jobs: nix build --accept-flake-config .#packages.x86_64-linux.default - name: Generate a token id: generate-token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ secrets.GH_APP_ID }} private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 12af736..17cc89c 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -22,17 +22,17 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: mount Nix store on larger partition # on the Linux runner `/` doesn't have enough space, but there's a `/mnt` which does. if: runner.os == 'Linux' run: | sudo mkdir /nix /mnt/nix sudo mount --bind /mnt/nix /nix - - uses: cachix/install-nix-action@v30 + - uses: cachix/install-nix-action@v31 with: nix_path: nixpkgs=channel:nixos-unstable - - uses: cachix/cachix-action@v15 + - uses: cachix/cachix-action@v16 with: name: scarisey-public authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"