diff --git a/.github/workflows/auto-reviewer.yml b/.github/workflows/auto-reviewer.yml index ad4e604..af2adab 100644 --- a/.github/workflows/auto-reviewer.yml +++ b/.github/workflows/auto-reviewer.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Add reviewers for Github Actions dependencies if: contains(github.event.pull_request.labels.*.name, 'github_actions') - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.pulls.requestReviewers({ @@ -26,7 +26,7 @@ jobs: - name: Add reviewers for Rust dependencies if: contains(github.event.pull_request.labels.*.name, 'rust') - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.pulls.requestReviewers({ diff --git a/.github/workflows/check-version-bump.yml b/.github/workflows/check-version-bump.yml index 93e912c..b550bf5 100644 --- a/.github/workflows/check-version-bump.yml +++ b/.github/workflows/check-version-bump.yml @@ -39,7 +39,7 @@ jobs: - name: Fetch Dependabot metadata id: dependabot-metadata if: steps.version-check.outcome == 'failure' - uses: dependabot/fetch-metadata@v2 + uses: dependabot/fetch-metadata@v3 with: github-token: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 088e0ce..3e6c6d1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -73,7 +73,7 @@ jobs: mv "${{github.workspace}}/install/bin/hp" "${{github.workspace}}/install/bin/historyprovider-${{ steps.get-version.outputs.version }}" - name: Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: name: historyprovider ${{ steps.get-version.outputs.version }} tag_name: ${{ steps.get-version.outputs.version }} diff --git a/Cargo.lock b/Cargo.lock index aeac380..684753f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -846,7 +846,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "historyprovider" -version = "2.8.1" +version = "2.8.2" dependencies = [ "async-broadcast", "async-compression", diff --git a/Cargo.toml b/Cargo.toml index ff06679..43676bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "historyprovider" description = "historyprovider-rs" license = "MIT" repository = "https://github.com/silicon-heaven/historyprovider-rs" -version = "2.8.1" +version = "2.8.2" edition = "2024" [[bin]]