Skip to content

Commit

Permalink
chore(ci): update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AnActualEmerald committed Feb 1, 2024
1 parent e20b4b4 commit 265ff4a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
github-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- name: Generate changelog
id: changelog
uses: orhun/git-cliff-action@v2
uses: orhun/git-cliff-action@v2.3.0
with:
config: cliff.toml
args: --verbose -l -s all
env:
OUTPUT: CHANGES.md
- name: Publish release
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.7.0
with:
file: LICENSE
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
Expand All @@ -30,16 +30,16 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
override: true
components: llvm-tools-preview

- uses: Swatinem/rust-cache@v1
- uses: Swatinem/rust-cache@v2.7

- name: Download grcov
run: |
Expand All @@ -52,6 +52,5 @@ jobs:
command: xtask
args: coverage
- name: Upload to codecov.io
uses: codecov/codecov-action@v3.1.4
with:
uses: codecov/codecov-action@v4
files: coverage/*.lcov

0 comments on commit 265ff4a

Please sign in to comment.