Skip to content

Commit

Permalink
bump Action workflow versions
Browse files Browse the repository at this point in the history
  • Loading branch information
BanjoFox committed Jul 3, 2024
1 parent f0dc1ac commit 8393c00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/aardwolf-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ concurrency:
cancel-in-progress: true

jobs:

cargo-build:
runs-on: ubuntu-latest

steps:

- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4 # Marketplace - https://github.com/marketplace/actions/checkout
# Installs the most recent stable rust toolchain as of the specified time
# offset, which may be written in years, months, weeks, or days.
- uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -68,4 +68,4 @@ jobs:
# Run cargo build
- name: Cargo build aardwolf
run: cargo build
run: cargo build
2 changes: 1 addition & 1 deletion .github/workflows/aardwolf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout the originating branch
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_branch }}

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::env;
use anyhow::{Context, Result};
use clap::Parser;
use clap_verbosity_flag::Verbosity;
use config::{Config, ConfigError, Environment};
use config::{Config, Environment};

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
Expand Down

0 comments on commit 8393c00

Please sign in to comment.