Skip to content

Commit

Permalink
ci(actions): update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fuljo committed May 5, 2024
1 parent 486bc82 commit 5cb825f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
PKGREL: ${{ github.event.inputs.aur_pkgrel || '1' }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
Expand All @@ -45,7 +45,7 @@ jobs:
- run: cat PKGBUILD

- name: Publish PKGBUILD
uses: KSXGitHub/github-actions-deploy-aur@v2.7.0
uses: KSXGitHub/github-actions-deploy-aur@v2.7.1
with:
pkgname: rofi-vscode-mode
pkgbuild: PKGBUILD
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
rust: [stable]
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: clippy

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
Expand All @@ -91,20 +91,20 @@ jobs:
needs.rustfmt.result == 'success'
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Fetch the whole history, otherwise we can't generate the changelog
fetch-depth: 0

- name: Generate changelog
uses: orhun/git-cliff-action@v2
uses: orhun/git-cliff-action@v3
id: git-cliff
with:
config: Cargo.toml
# Remove header and footer, print changes for current tag
args: -vv --current --strip header

- name: Create release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
body_path: ${{ steps.git-cliff.outputs.changelog }}

0 comments on commit 5cb825f

Please sign in to comment.