-
-
Notifications
You must be signed in to change notification settings - Fork 220
chore: add weekly flake.lock update workflow #1978
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
Draft
yvan-sraka
wants to merge
54
commits into
update-nixpkgs
Choose a base branch
from
automate-flake-updates
base: update-nixpkgs
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
b5069a1
chore: fix missing required `teams` meta attribute
jfroche 3561fd4
chore: update old (unsupported) version of nix used in script
jfroche 599dbd0
fix: overlay and use our `buildPgrxExtension` function
jfroche 1d6e09f
chore: fix formatting
jfroche af89e55
chore: replace (deprecated) `substituteAll` by `replaceVars`
jfroche f0b9329
chore: update (and refactor) flake inputs
jfroche 92e2a2e
chore: bump `pgrouting` version to 3.8.0
yvan-sraka 64e8d7f
fix: backport tzdata fixes for postgresql 15
jfroche f4d0368
fix: plv8 3.1 requires older v8
jfroche 9f3b78f
chore: update fmt
jfroche b013d48
chore: update cargo-pgrx 1.14.3 cargo hash
jfroche d607d9e
chore(postgresql): add isOrioleDB condition
jfroche df2acc0
fix: pgregress tests
jfroche e88fa2d
fix: update schema for dbmate schema_migrations table
jfroche 301720b
Structured attributes are now required when building with separateDeb…
jfroche d1e2832
chore: version bump
samrose bb9fa68
fix: rebase on develop and fix code api changes from nixpkgs
samrose 2982a06
tests: try to get passing tests
samrose e739e3c
feat: pin icu75 for postgres build to maintain compat with existing
samrose 8ee3091
chore: remove commented out code not needed in latest changes to pg
samrose bc16fe2
fix: apparently incorrectly rebased changes, and % nix fmt
yvan-sraka 750a3ca
chore: remove nixpkgs-pgbackrest input, and % nix flake update
yvan-sraka 0a1ef8e
fix: replace deprecated v8 package, and wrong packages arguments
yvan-sraka 9584c45
chore: fix formatting
jfroche 2c40ccc
fix(darwin): remove reference to apple-sdk
jfroche 82ea45a
fix(ext): missing required attributes in some extension tests
jfroche 8dfb889
chore: % nix flake update && nix fmt
yvan-sraka 194c2b6
fix(orioledb): fixed installedExtensions reference to use proper self…
yvan-sraka 9fc75d1
fix(postgresql): remove redundant patch substitutions
yvan-sraka 3e9ff0c
fix(pgrx): remove deprecated darwin.apple_sdk.frameworks.Security
yvan-sraka d8af15c
fix(postgis): remove custom sfcgal package dependency
yvan-sraka e9944a9
fix(pg_net): pin curl to older nixpkgs version
yvan-sraka 989d875
fix(pgrx): error: multiple input filenames provided
yvan-sraka 933339b
fix(tests): updated test expectations
yvan-sraka 1cadc53
feat: (re)add check_pg_regress method to PostgresExtensionTest
yvan-sraka f94950d
refactor: replace fetchTarball with flake input for nixpkgs-oldstable
yvan-sraka d7e4f6c
fix(pg_net): disable dangling-assignment warning for v0.19.5 on aarch…
yvan-sraka 7443a8e
fix(plv8): add headerpad_max_install_names for macOS builds
yvan-sraka 7024d07
fix(tests): correct library naming and symlinks for background worker…
yvan-sraka f71b762
refactor(exts): replace nixpkgs-oldstable with specific overlay packages
yvan-sraka 95f466b
fix: restore revision support for orioledb builds (introduced it #1880)
yvan-sraka 9dd6ee6
fix(exts): remove old files that were moved to subdirectories
yvan-sraka 3b958cd
fix(flake): remove nixpkgs-go124 and nix-fast-build dependencies
yvan-sraka fc26e94
fix(flake): update flake.lock and cargo-pgrx hashes
yvan-sraka 15a49b2
fix(exts): remove remaining duplicated files
yvan-sraka 1f9dd50
refactor(pgrx): conditionally apply rustc wrapper when < 0.12
yvan-sraka 8d94497
refactor(nixpkgs): use let binding for oldstable instead of overlay
yvan-sraka 532662f
refactor(groonga): move groonga package to pgroonga extension
yvan-sraka a7dc338
fix(ansible): remove supabase-groonga from package install list
yvan-sraka 408d7de
Revert "fix(ansible): remove supabase-groonga from package install list"
yvan-sraka 77f2e57
Revert "refactor(groonga): move groonga package to pgroonga extension"
yvan-sraka 6395a7f
fix(darwin): remove deprecated apple_sdk frameworks from supascan
yvan-sraka 3df6c4a
chore: bump version suffix to test
yvan-sraka 19a20f1
chore: add weekly flake.lock update workflow
yvan-sraka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| name: Update Flake Lock | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| schedule: | ||
| - cron: '0 0 * * 0' | ||
|
|
||
| jobs: | ||
| update-flake-lock: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Install Nix | ||
| uses: DeterminateSystems/nix-installer-action@v14 | ||
|
|
||
| - name: Update flake.lock | ||
| uses: DeterminateSystems/update-flake-lock@v24 | ||
| with: | ||
| pr-title: "chore: update flake.lock" | ||
| pr-body: | | ||
| Automated update of flake.lock dependencies. | ||
|
|
||
| This PR updates all flake inputs to their latest versions. | ||
|
|
||
| Please review the changes and ensure CI passes before merging. | ||
| pr-labels: | | ||
| dependencies | ||
| automated | ||
| branch: update-flake-lock | ||
| base-branch: develop | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here rather use https://github.com/marketplace/actions/install-nix