Skip to content

Commit

Permalink
chore: Bump actions/checkout to v4
Browse files Browse the repository at this point in the history
v3 uses an older Node version that will soon no longer be supported by GitHub Actions
  • Loading branch information
GeckoEidechse committed Feb 4, 2024
1 parent 940a81b commit a8d8011
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
name: format-check
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Format check
run: cargo fmt --all -- --check

build:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
cargo build --release --verbose
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Build
Expand Down

0 comments on commit a8d8011

Please sign in to comment.