Compare commits
29 Commits
Author | SHA1 | Date | |
---|---|---|---|
b044cabb79 | |||
c58b7816fa | |||
614f33eec2 | |||
a10510d383 | |||
e00d99112b | |||
aa902c3538 | |||
8c2dfef874 | |||
e8bb9f761a | |||
073d38a53e | |||
d65c4f4a49 | |||
bf4213a00e | |||
0c7c875acc | |||
e2447fec26 | |||
11002c9dd5 | |||
2dc5d432c4 | |||
30320f06f5 | |||
a5526c5d9e | |||
b7a213c108 | |||
4cc1e7b9cd | |||
0f6e7d684e | |||
8145cc6e00 | |||
d384d02476 | |||
1aae24f313 | |||
5a95cb6772 | |||
958240e9be | |||
d884d497b3 | |||
127c635f94 | |||
ae7e289a74 | |||
7a2785317e |
15
.editorconfig
Normal file
15
.editorconfig
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# EditorConfig helps developers define and maintain consistent
|
||||||
|
# coding styles between different editors and IDEs
|
||||||
|
# editorconfig.org
|
||||||
|
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
indent_style = space
|
||||||
|
|
||||||
|
[*.{yml,yaml}]
|
||||||
|
indent_size = 2
|
11
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
11
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
##### Description
|
||||||
|
|
||||||
|
<!---
|
||||||
|
Please include a short description of what your PR does and / or the motivation
|
||||||
|
behind it
|
||||||
|
--->
|
||||||
|
|
||||||
|
##### Checklist
|
||||||
|
|
||||||
|
- [ ] Tested functionality against a test repository (see ["How to test changes"](../README.md#how-to-test-changes))
|
||||||
|
- [ ] Added or updated relevant documentation (leave unchecked if not applicable)
|
17
.github/workflows/ci.yml
vendored
Normal file
17
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
shellcheck:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v16
|
||||||
|
- name: Shellcheck
|
||||||
|
run: nix-shell --run 'shellcheck $(find . -type f -name "*.sh" -executable)'
|
19
.github/workflows/update.yml
vendored
Normal file
19
.github/workflows/update.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: update-flake-lock
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 0'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v16
|
||||||
|
with:
|
||||||
|
extra_nix_config: |
|
||||||
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Update flake.lock
|
||||||
|
uses: ./.
|
20
.github/workflows/validate.yml
vendored
Normal file
20
.github/workflows/validate.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Validate YAML
|
||||||
|
uses: nwisbeta/validate-yaml-schema@v1.0.3
|
||||||
|
with:
|
||||||
|
yamlSchemasJson: |
|
||||||
|
{
|
||||||
|
"https://json.schemastore.org/github-action.json": ["action.yml"]
|
||||||
|
}
|
122
README.md
122
README.md
@ -13,7 +13,7 @@ name: update-flake-lock
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch: # allows manual triggering
|
workflow_dispatch: # allows manual triggering
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *' # runs daily at 00:00
|
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lockfile:
|
lockfile:
|
||||||
@ -22,14 +22,124 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v14
|
uses: cachix/install-nix-action@v16
|
||||||
with:
|
with:
|
||||||
install_url: https://nixos-nix-install-tests.cachix.org/serve/vij683ly7sl95nnhb67bdjjfabclr85m/install
|
|
||||||
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
|
|
||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
experimental-features = nix-command flakes
|
|
||||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Update flake.lock
|
- name: Update flake.lock
|
||||||
uses: DeterminateSystems/update-flake-lock@v3
|
uses: DeterminateSystems/update-flake-lock@vX
|
||||||
|
with:
|
||||||
|
pr-title: "Update flake.lock" # Title of PR to be created
|
||||||
|
pr-labels: | # Labels to be set on the PR
|
||||||
|
dependencies
|
||||||
|
automated
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Example updating specific input(s)
|
||||||
|
|
||||||
|
> **NOTE**: If any inputs have a stale reference (e.g. the lockfile thinks a git input wants its "ref" to be "nixos-unstable", but the flake.nix specifies "nixos-unstable-small"), they will also be updated. At this time, there is no known workaround.
|
||||||
|
|
||||||
|
It is also possible to update specific inputs by specifying them in a space-separated list:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: update-flake-lock
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v16
|
||||||
|
with:
|
||||||
|
extra_nix_config: |
|
||||||
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Update flake.lock
|
||||||
|
uses: DeterminateSystems/update-flake-lock@vX
|
||||||
|
with:
|
||||||
|
inputs: input1 input2 input3
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example that prints the number of the created PR
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: update-flake-lock
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v16
|
||||||
|
with:
|
||||||
|
extra_nix_config: |
|
||||||
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Update flake.lock
|
||||||
|
id: update
|
||||||
|
uses: DeterminateSystems/update-flake-lock@vX
|
||||||
|
with:
|
||||||
|
inputs: input1 input2 input3
|
||||||
|
- name: Print PR number
|
||||||
|
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running GitHub Actions CI
|
||||||
|
|
||||||
|
GitHub Actions will not run workflows when a branch is pushed by or a PR is opened by a GitHub Action. There are two ways to have GitHub Actions CI run on a PR submitted by this action.
|
||||||
|
|
||||||
|
### Without a Personal Authentication Token
|
||||||
|
|
||||||
|
Without using a Personal Authentication Token, you can manually run the following to kick off a CI run:
|
||||||
|
|
||||||
|
```
|
||||||
|
git branch -D update_flake_lock_action
|
||||||
|
git fetch origin
|
||||||
|
git checkout update_flake_lock_action
|
||||||
|
git commit --amend --no-edit
|
||||||
|
git push origin update_flake_lock_action --force
|
||||||
|
```
|
||||||
|
|
||||||
|
### With a Personal Authentication Token
|
||||||
|
|
||||||
|
By providing a Personal Authentication Token, the PR will be submitted in a way that bypasses this limitation (GitHub will essentially think it is the owner of the PAT submitting the PR, and not an Action).
|
||||||
|
You can create a token by visiting https://github.com/settings/tokens and select at least the `repo` scope. Then, store this token in your repository secrets (i.e. 'https://github.com/<USER>/<REPO>/settings/secrets/actions') as `GH_TOKEN_FOR_UPDATES` and set up your workflow file like the following:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: update-flake-lock
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 1,4' # Run twice a week
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v16
|
||||||
|
- name: Update flake.lock
|
||||||
|
uses: DeterminateSystems/update-flake-lock@vX
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Feel free to send a PR or open an issue if you find something functions unexpectedly! Please make sure to test your changes and update any related documentation before submitting your PR.
|
||||||
|
|
||||||
|
### How to test changes
|
||||||
|
|
||||||
|
In order to more easily test your changes to this action, we have created a template repository that should point you in the right direction: https://github.com/DeterminateSystems/update-flake-lock-test-template. Please see the README in that repository for instructions on testing your changes.
|
||||||
|
48
action.yml
48
action.yml
@ -1,15 +1,42 @@
|
|||||||
name: 'Update flake.lock'
|
name: 'Update flake.lock'
|
||||||
description: 'Update your flake.lock and send a PR'
|
description: 'Update your flake.lock and send a PR'
|
||||||
|
inputs:
|
||||||
|
inputs:
|
||||||
|
description: 'A space-separated list of inputs to update. Leave empty to update all inputs.'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
token:
|
||||||
|
description: 'GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)'
|
||||||
|
required: false
|
||||||
|
default: ${{ github.token }}
|
||||||
|
commit-msg:
|
||||||
|
description: 'The message provided with the commit'
|
||||||
|
required: false
|
||||||
|
default: "flake.lock: Update"
|
||||||
|
pr-title:
|
||||||
|
description: 'The title of the PR to be created'
|
||||||
|
required: false
|
||||||
|
default: "flake.lock: Update"
|
||||||
|
pr-labels:
|
||||||
|
description: 'A comma or newline separated list of labels to set on the Pull Request to be created'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
outputs:
|
||||||
|
pull-request-number:
|
||||||
|
description: 'The number of the opened pull request'
|
||||||
|
value: ${{ steps.create-pr.outputs.pull-request-number }}
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- run: nix flake update --commit-lock-file
|
- run: $GITHUB_ACTION_PATH/update-flake-lock.sh
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
GIT_AUTHOR_NAME: github-actions[bot]
|
GIT_AUTHOR_NAME: github-actions[bot]
|
||||||
GIT_AUTHOR_EMAIL: <github-actions[bot]@users.noreply.github.com>
|
GIT_AUTHOR_EMAIL: <github-actions[bot]@users.noreply.github.com>
|
||||||
GIT_COMMITTER_NAME: github-actions[bot]
|
GIT_COMMITTER_NAME: github-actions[bot]
|
||||||
GIT_COMMITTER_EMAIL: <github-actions[bot]@users.noreply.github.com>
|
GIT_COMMITTER_EMAIL: <github-actions[bot]@users.noreply.github.com>
|
||||||
|
TARGETS: ${{ inputs.inputs }}
|
||||||
|
COMMIT_MSG: ${{ inputs.commit-msg }}
|
||||||
- run: |
|
- run: |
|
||||||
content="$(git log --format=%b -n 1)"
|
content="$(git log --format=%b -n 1)"
|
||||||
content="${content//'%'/'%25'}"
|
content="${content//'%'/'%25'}"
|
||||||
@ -19,14 +46,31 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
id: commit_message
|
id: commit_message
|
||||||
- name: Create PR
|
- name: Create PR
|
||||||
|
id: create-pr
|
||||||
uses: peter-evans/create-pull-request@v3
|
uses: peter-evans/create-pull-request@v3
|
||||||
with:
|
with:
|
||||||
branch: update_flake_lock_action
|
branch: update_flake_lock_action
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
title: "flake.lock: Update"
|
title: ${{ inputs.pr-title }}
|
||||||
|
token: ${{ inputs.token }}
|
||||||
|
labels: ${{ inputs.pr-labels }}
|
||||||
body: |
|
body: |
|
||||||
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
||||||
|
|
||||||
```
|
```
|
||||||
${{ steps.commit_message.outputs.msg }}
|
${{ steps.commit_message.outputs.msg }}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Running GitHub Actions on this PR
|
||||||
|
|
||||||
|
GitHub Actions will not run workflows on pull requests which are opened by a GitHub Action.
|
||||||
|
|
||||||
|
To run GitHub Actions workflows on this PR, run:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git branch -D update_flake_lock_action
|
||||||
|
git fetch origin
|
||||||
|
git checkout update_flake_lock_action
|
||||||
|
git commit --amend --no-edit
|
||||||
|
git push origin update_flake_lock_action --force
|
||||||
|
```
|
||||||
|
27
flake.lock
generated
Normal file
27
flake.lock
generated
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1638263381,
|
||||||
|
"narHash": "sha256-1rZDxTw74ETuJEjwPfpMgY0sfx8Cv1tRNt3gibol574=",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "7b031d0d99e8cdaf0b70457c0cb33f16c0c958bb",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nixos",
|
||||||
|
"ref": "nixos-unstable-small",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
30
flake.nix
Normal file
30
flake.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
description = "update-flake-lock";
|
||||||
|
|
||||||
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
{ self
|
||||||
|
, nixpkgs
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
nameValuePair = name: value: { inherit name value; };
|
||||||
|
genAttrs = names: f: builtins.listToAttrs (map (n: nameValuePair n (f n)) names);
|
||||||
|
|
||||||
|
allSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||||
|
forAllSystems = f: genAttrs allSystems
|
||||||
|
(system: f {
|
||||||
|
inherit system;
|
||||||
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
});
|
||||||
|
in
|
||||||
|
{
|
||||||
|
devShell = forAllSystems
|
||||||
|
({ system, pkgs, ... }:
|
||||||
|
pkgs.stdenv.mkDerivation {
|
||||||
|
name = "update-flake-lock-devshell";
|
||||||
|
buildInputs = [ pkgs.shellcheck ];
|
||||||
|
src = self;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
6
shell.nix
Normal file
6
shell.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
(import
|
||||||
|
(fetchTarball {
|
||||||
|
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
||||||
|
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
|
||||||
|
})
|
||||||
|
{ src = ./.; }).shellNix
|
12
update-flake-lock.sh
Executable file
12
update-flake-lock.sh
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
if [[ -n "$TARGETS" ]]; then
|
||||||
|
inputs=()
|
||||||
|
for input in $TARGETS; do
|
||||||
|
inputs+=("--update-input" "$input")
|
||||||
|
done
|
||||||
|
nix flake lock "${inputs[@]}" --commit-lock-file --commit-lockfile-summary "$COMMIT_MSG"
|
||||||
|
else
|
||||||
|
nix flake update --commit-lock-file --commit-lockfile-summary "$COMMIT_MSG"
|
||||||
|
fi
|
Reference in New Issue
Block a user