Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@1.89.0
- uses: dtolnay/rust-toolchain@1.100.0
with:
components: clippy,rustfmt
- name: Install cargo-audit 0.22.2
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Validate PowerShell installer syntax
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
} finally {
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue $testRoot
}
- uses: dtolnay/rust-toolchain@1.89.0
- uses: dtolnay/rust-toolchain@1.100.0
with:
components: clippy,rustfmt
- run: cargo check --tests --locked
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -32,7 +32,7 @@ jobs:
grep -Fq "## [$version] - " CHANGELOG.md
git fetch origin main:refs/remotes/origin/main
git merge-base --is-ancestor "$GITHUB_SHA" origin/main
- uses: dtolnay/rust-toolchain@1.89.0
- uses: dtolnay/rust-toolchain@1.100.0
with:
components: clippy,rustfmt
- name: Install cargo-audit 0.22.2
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
source: target/aarch64-unknown-linux-musl/release/opencode-ssh-image-paste
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Validate PowerShell installer syntax
Expand All @@ -87,7 +87,7 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
run: ./tests/bootstrap.Tests.ps1
- uses: dtolnay/rust-toolchain@1.89.0
- uses: dtolnay/rust-toolchain@1.100.0
- run: cargo test --locked
- name: Install Linux musl build tools
if: runner.os == 'Linux'
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: Prepare release asset
shell: bash
run: cp "${{ matrix.source }}" "${{ matrix.asset }}"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ matrix.asset }}
path: ${{ matrix.asset }}
Expand All @@ -168,10 +168,10 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: dist
merge-multiple: true
Expand All @@ -180,7 +180,7 @@ jobs:
- name: Generate checksums
working-directory: dist
run: sha256sum opencode-ssh-image-paste-* bootstrap.ps1 > SHA256SUMS
- uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v3
with:
generate_release_notes: true
files: |
Expand Down
Loading