Skip to content

Commit

Permalink
Release 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Feb 18, 2024
1 parent ccaaa01 commit a4a7327
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.23.0] - 2024-02-18
### Added
- Add support for FreeBSD 14.0 ([#74](https://github.com/cross-platform-actions/action/issues/74))
- Add post run step that prints the VM output
Expand Down Expand Up @@ -177,8 +179,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/cross-platform-actions/action/compare/v0.22.0...HEAD
[Unreleased]: https://github.com/cross-platform-actions/action/compare/v0.23.0...HEAD

[0.23.0]: https://github.com/cross-platform-actions/action/compare/v0.22.0...v0.23.0
[0.22.0]: https://github.com/cross-platform-actions/action/compare/v0.21.1...v0.22.0
[0.21.1]: https://github.com/cross-platform-actions/action/compare/v0.21.0...v0.21.1
[0.21.0]: https://github.com/cross-platform-actions/action/compare/v0.20.0...v0.21.0
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Some of the features that this action supports include:

### Minimal Example

Here's a sample workflow file which will run the given commands on FreeBSD 13.2.
Here's a sample workflow file which will run the given commands on FreeBSD 14.0.

```yaml
name: CI
Expand All @@ -33,10 +33,10 @@ jobs:
- uses: actions/checkout@v4

- name: Test
uses: cross-platform-actions/action@v0.22.0
uses: cross-platform-actions/action@v0.23.0
with:
operating_system: freebsd
version: '13.2'
version: '14.0'
run: |
uname -a
echo $SHELL
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v4

- name: Test on ${{ matrix.os.name }}
uses: cross-platform-actions/action@v0.22.0
uses: cross-platform-actions/action@v0.23.0
env:
MY_ENV1: MY_ENV1
MY_ENV2: MY_ENV2
Expand Down

0 comments on commit a4a7327

Please sign in to comment.