Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI changes #620

Merged
merged 2 commits into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: jlumbroso/free-disk-space@v1.3.1
- uses: thiagokokada/free-disk-space@main
with:
swap-storage: false
tool-cache: true
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- uses: cachix/install-nix-action@v30
with:
extra_nix_config: |-
accept-flake-config = true
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- uses: cachix/install-nix-action@v30
with:
extra_nix_config: |-
accept-flake-config = true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-flakes-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- uses: cachix/install-nix-action@v30
with:
extra_nix_config: |-
accept-flake-config = true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-flakes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ jobs:
update-flakes:
runs-on: ubuntu-latest
steps:
- uses: jlumbroso/free-disk-space@v1.3.1
- uses: thiagokokada/free-disk-space@main
with:
swap-storage: false
tool-cache: true
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- uses: cachix/install-nix-action@v30
with:
extra_nix_config: |-
accept-flake-config = true
Expand All @@ -34,7 +34,7 @@ jobs:
nix build --print-build-logs '.#nixosConfigurations.mirai-nixos.config.system.build.toplevel'
nix build --print-build-logs '.#nixosConfigurations.sankyuu-nixos.config.system.build.toplevel'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
uses: peter-evans/create-pull-request@v7
with:
body: |
## Run report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-flakes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
DEBIAN_FRONTEND=noninteractive
sudo apt-get update -q -y
sudo apt-get install -q -y binfmt-support qemu-user-static
- uses: cachix/install-nix-action@v27
- uses: cachix/install-nix-action@v30
with:
extra_nix_config: |-
accept-flake-config = true
Expand Down
6 changes: 3 additions & 3 deletions actions/constants.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
# https://github.com/marketplace/actions/checkout
checkout = "actions/checkout@v4";
# https://github.com/marketplace/actions/create-pull-request
create-pull-request = "peter-evans/create-pull-request@v6";
create-pull-request = "peter-evans/create-pull-request@v7";
# https://github.com/marketplace/actions/free-disk-space-ubuntu
free-disk-space = "jlumbroso/free-disk-space@v1.3.1";
free-disk-space = "thiagokokada/free-disk-space@main";
# https://github.com/marketplace/actions/install-nix
install-nix-action = "cachix/install-nix-action@v27";
install-nix-action = "cachix/install-nix-action@v30";
};
ubuntu.runs-on = "ubuntu-latest";
macos.runs-on = "macos-latest";
Expand Down