Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update runners with latest versions #396

Merged
merged 3 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- macos-13
- macos-14
- macos-15
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-22.04-arm
- ubuntu-24.04
- ubuntu-24.04-arm
- windows-2019
- windows-2022
- windows-2025

permissions:
contents: read
Expand Down Expand Up @@ -75,7 +78,7 @@ jobs:

- name: Upload artifacts
uses: actions/upload-artifact@v4.4.3
if: matrix.os == 'ubuntu-22.04'
if: matrix.os == 'ubuntu-24.04'
with:
name: nupkg
path: ./artifacts/*.nupkg
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
### Updated

- Build and test on macOS 14
- Build and test on macOS 15
- Build and test on Ubuntu 22.04 ARM
- Build and test on Ubuntu 24.04
- No longer built and tested on macOS 11 due to GitHub Actions [no longer supporting](https://github.com/actions/runner-images/issues/9255) that version
- Build and test on Ubuntu 24.04 ARM
- Build and test on Windows 2025
- No longer built and tested on macOS 11 & 12 due to GitHub Actions [no longer supporting](https://github.com/actions/runner-images/issues/9255) those versions

## [0.2.0](https://github.com/xt0rted/dotnet-rimraf/compare/v0.1.0...v0.2.0) - 2024-04-10

Expand Down
Loading