Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
renovate[bot] authored Sep 29, 2024
1 parent 76c97d9 commit 243db75
Showing 6 changed files with 435 additions and 967 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docgen.yml
Original file line number Diff line number Diff line change
@@ -16,16 +16,16 @@ jobs:
- os: ubuntu-22.04
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Restore cache for today's nightly.
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: _neovim
key: ${{ runner.os }}-${{ matrix.url }}-${{ hashFiles('todays-date') }}

- name: Cache rust items
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.rustup/
4 changes: 2 additions & 2 deletions .github/workflows/nix.yaml
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@ jobs:

name: nix-build (${{ matrix.os }})
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # SECURITY: pin third-party action hashes
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@6a10e2e9fdd7f91408e9f9f95bdc77cf5232b932 # SECURITY: pin third-party action hashes
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix build
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ jobs:
cat dist-manifest.json
echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT"
- name: "Upload dist-manifest.json"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
path: dist-manifest.json
@@ -104,7 +104,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # SECURITY: pin third-party action hashes
- uses: swatinem/rust-cache@96a8d65dbafbc7d145a9b2b6c3b12ee335738cd2 # SECURITY: pin third-party action hashes
- name: Install cargo-dist
run: ${{ matrix.install_dist }}
- name: Add aarch64 target
@@ -115,7 +115,7 @@ jobs:
run: "sudo apt update && sudo apt install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu"
# Get the dist-manifest
- name: Fetch local artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: target/distrib/
@@ -141,7 +141,7 @@ jobs:
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
- name: "Upload artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
@@ -153,7 +153,7 @@ jobs:
needs:
- plan
- build-local-artifacts
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: target/distrib/dist-manifest.json
@@ -171,7 +171,7 @@ jobs:
run: "sudo apt update && sudo apt install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu"
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
- name: Fetch local artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: target/distrib/
@@ -188,7 +188,7 @@ jobs:
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
- name: "Upload artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
@@ -204,7 +204,7 @@ jobs:
if: ${{ always() && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
outputs:
val: ${{ steps.host.outputs.manifest }}
steps:
@@ -215,7 +215,7 @@ jobs:
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.5.0/cargo-dist-installer.sh | sh"
# Fetch artifacts from scratch-storage
- name: Fetch artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: target/distrib/
@@ -228,7 +228,7 @@ jobs:
cat dist-manifest.json
echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT"
- name: "Upload dist-manifest.json"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
path: dist-manifest.json
@@ -242,15 +242,15 @@ jobs:
# still allowing individual publish jobs to skip themselves (for prereleases).
# "host" however must run to completion, no skipping allowed!
if: ${{ always() && needs.host.result == 'success' }}
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: "Download Github Artifacts"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: artifacts
@@ -259,7 +259,7 @@ jobs:
# Remove the granular manifests
rm -f artifacts/*-dist-manifest.json
- name: Create Github Release
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # SECURITY: pin third-party action hashes
uses: ncipollo/release-action@a8bcd956fb63e2672c1e57eafb1accf4eaa68c31 # SECURITY: pin third-party action hashes
with:
tag: ${{ needs.plan.outputs.tag }}
name: ${{ fromJson(needs.host.outputs.val).announcement_title }}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -22,16 +22,16 @@ jobs:
- os: macos-latest
rev: nightly/nvim-macos-x86_64.tar.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Restore from todays cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: _neovim
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}

- name: Cache rust items
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.rustup/
1,326 changes: 397 additions & 929 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -19,34 +19,34 @@ graphql_client.workspace = true
reqwest.workspace = true
lsp-types.workspace = true

regex = "1.9.1"
futures = "0.3.28"
lsp-server = "0.7.2"
log4rs = "1.2"
log = "0.4"
once_cell = "1"
regex = "1.11.0"
futures = "0.3.30"
lsp-server = "0.7.7"
log4rs = "1.3.0"
log = "0.4.22"
once_cell = "1.20.1"

sg-gql = { path = "crates/sg-gql" }
sg-types = { path = "crates/sg-types" }
jsonrpc = { path = "crates/jsonrpc" }
gix = "0.66.0"
tiny_http = "0.12.0"
keyring = "2.1.0"
whoami = "1.4.1"
keyring = "3.3.0"
whoami = "1.5.2"

[workspace.dependencies]
anyhow = "1"
tokio = { version = "1", features = ["full"] }
openssl = { version = "0.10", features = ["vendored"] }
anyhow = "1.0.89"
tokio = { version = "1.40.0", features = ["full"] }
openssl = { version = "0.10.66", features = ["vendored"] }

serde = "1.0.180"
serde_json = "1.0"
serde = "1.0.210"
serde_json = "1.0.128"

graphql_client = { version = "0.13.0", features = ["reqwest", "reqwest-blocking"] }
reqwest = { version = "0.11", features = ["native-tls-vendored"] }
graphql_client = { version = "0.14.0", features = ["reqwest", "reqwest-blocking"] }
reqwest = { version = "0.12.7", features = ["native-tls-vendored"] }

lsp-types = "0.94.0"
url = "2.4.0"
lsp-types = "0.97.0"
url = "2.5.2"

# Config for 'cargo dist'
[workspace.metadata.dist]

0 comments on commit 243db75

Please sign in to comment.