Skip to content

Commit

Permalink
Add support for OpenBSD 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jun 14, 2022
1 parent da0fbbe commit 277461d
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,20 @@ jobs:
uname:
hardware: amd64

- name: OpenBSD
version: '7.1'
host: macos-10.15
workDirectory: /Users/runner/work/action/action
uname:
hardware: amd64

- name: OpenBSD
version: '7.1'
host: ubuntu-latest
workDirectory: /home/runner/work/action/action
uname:
hardware: amd64

- name: NetBSD
version: '9.2'
host: ubuntu-latest
Expand Down
8 changes: 7 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0] - 2022-06-14
### Added
- Add support for OpenBSD 7.1 ([openbsd-builder#9](https://github.com/cross-platform-actions/openbsd-builder/pull/9))

## [0.5.0] - 2022-05-31
### Added
- Add support for running OpenBSD on Linux ([#9](https://github.com/cross-platform-actions/action/issues/9))
Expand Down Expand Up @@ -35,7 +39,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/cross-platform-actions/action/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/cross-platform-actions/action/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/cross-platform-actions/action/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/cross-platform-actions/action/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/cross-platform-actions/action/compare/v0.2.0...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ operating system will list which versions are supported.

| Version | x86-64 |
| ------- | ------ |
| 7.1 | ✓ |
| 6.9 | ✓ |
| 6.8 | ✓ |

Expand Down
2 changes: 1 addition & 1 deletion src/operating_system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ class OpenBsd extends OperatingSystem {
}

get virtualMachineImageReleaseVersion(): string {
return 'v0.2.1'
return 'v0.3.0'
}

createVirtualMachine(
Expand Down

0 comments on commit 277461d

Please sign in to comment.