Skip to content

Commit

Permalink
Fix GitHub Actions (#2245)
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe authored Dec 23, 2023
1 parent 8f4dea2 commit 30ac7d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: Homebrew/actions/setup-homebrew@master
- run: tools/ci/github/setup.sh
- run: echo asset=$(tools/build_asset.sh) >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ env.asset }}
path: ${{ env.asset }}
Expand All @@ -53,7 +53,7 @@ jobs:
with:
fetch-depth: 0
- run: git log --pretty='- %s by %aN' $(git describe --tags --abbrev=0 HEAD^)..HEAD > changes.md
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: softprops/action-gh-release@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: tools/ci/github/setup.sh
- run: tools/build.sh
- run: git diff --exit-code
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}
path: target/release/pen
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: Homebrew/actions/setup-homebrew@master
- run: tools/ci/github/setup.sh
- uses: ruby/setup-ruby@v1
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-${{ matrix.os }}
path: target/release
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[toolchain]
channel = "stable"
components = ["clippy", "rustfmt", "rust-analysis", "rust-src"]
components = ["clippy", "rustfmt", "rust-analyzer", "rust-src"]
targets = [
"i686-unknown-linux-musl",
"x86_64-unknown-linux-musl",
Expand Down

0 comments on commit 30ac7d3

Please sign in to comment.