-
-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into config-key-take-2
Conflicts --------- gix-config/src/file/init/from_env.rs gix-config/src/parse/mod.rs gix/src/config/cache/access.rs gix/src/config/cache/incubate.rs gix/src/config/overrides.rs gix/src/repository/index.rs
- Loading branch information
Showing
934 changed files
with
19,528 additions
and
4,191 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
**/generated-archives/*.tar.xz filter=lfs-disabled diff=lfs merge=lfs -text | ||
|
||
# assure line feeds don't interfere with our working copy hash | ||
# assure line feeds don't interfere with our working copy hash | ||
**/tests/fixtures/**/*.sh text crlf=input eol=lf | ||
/justfile text crlf=input eol=lf | ||
|
||
# have GitHub treat the gix-packetline-blocking src copy as auto-generated | ||
gix-packetline-blocking/src/ linguist-generated=true |
This file contains 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,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
groups: | ||
github-actions: | ||
patterns: ["*"] |
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -18,8 +18,13 @@ jobs: | |
- windows-2019 | ||
- ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
# dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well | ||
rust_version: 1.67.0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/[email protected] # dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well | ||
- uses: extractions/setup-just@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: extractions/setup-just@v2 | ||
- run: | | ||
rustup toolchain install ${{ env.rust_version }} --profile minimal --no-self-update | ||
rustup default ${{ env.rust_version }} | ||
- run: just ci-check-msrv |
This file contains 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 |
---|---|---|
|
@@ -60,7 +60,7 @@ jobs: | |
run: echo "${{ env.ARTIFACT_VERSION }}" > artifacts/release-version | ||
|
||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: artifacts | ||
|
@@ -129,7 +129,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
|
@@ -161,7 +161,7 @@ jobs: | |
echo "target dir is: ${{ env.TARGET_DIR }}" | ||
- name: Get release download URL | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: artifacts | ||
|
@@ -211,7 +211,7 @@ jobs: | |
fi | ||
- name: Upload release archive | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
|
This file contains 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
This file contains 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.