Skip to content

Commit

Permalink
Add support for OpenBSD 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Oct 26, 2023
1 parent de0e1f1 commit 0e13474
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ jobs:
fail-fast: false
matrix:
version:
- '7.4'
- '7.3'
- '7.2'
- '7.1'
Expand Down
9 changes: 7 additions & 2 deletions 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.21.0] - 2023-10-26
### Added
- Add support for OpenBSD 7.4 ([openbsd-builder#15](https://github.com/cross-platform-actions/openbsd-builder/issues/15))

## [0.20.0] - 2023-10-24
### Added
- Add support for disabling file syncing ([#65](https://github.com/cross-platform-actions/action/issues/65)).
Expand Down Expand Up @@ -140,9 +144,10 @@ 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.20.0...HEAD
[Unreleased]: https://github.com/cross-platform-actions/action/compare/v0.21.0...HEAD

[0.19.1]: https://github.com/cross-platform-actions/action/compare/v0.19.1...v0.20.0
[0.21.0]: https://github.com/cross-platform-actions/action/compare/v0.20.0...v0.21.0
[0.20.0]: https://github.com/cross-platform-actions/action/compare/v0.19.1...v0.20.0
[0.19.1]: https://github.com/cross-platform-actions/action/compare/v0.19.0...v0.19.1
[0.19.0]: https://github.com/cross-platform-actions/action/compare/v0.18.0...v0.19.0
[0.18.0]: https://github.com/cross-platform-actions/action/compare/v0.17.0...v0.18.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.

9 changes: 5 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
### Full Example

Here's a sample workflow file which will set up a matrix resulting in four jobs.
One which will run on FreeBSD 13.2, one which runs OpenBSD 7.3, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.3 on ARM64.
One which will run on FreeBSD 13.2, one which runs OpenBSD 7.4, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.4 on ARM64.

```yaml
name: CI
Expand All @@ -70,12 +70,12 @@ jobs:

- name: openbsd
architecture: x86-64
version: '7.3'
version: '7.4'
host: macos-12

- name: openbsd
architecture: arm64
version: '7.3'
version: '7.4'
host: ubuntu-latest

- name: netbsd
Expand Down Expand Up @@ -171,6 +171,7 @@ operating system will list which versions are supported.

| Version | x86-64 | arm64 |
| ------- | ------ | ------ |
| 7.4 |||
| 7.3 |||
| 7.2 |||
| 7.1 |||
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const version = {
operating_system: {
freebsd: 'v0.5.0',
netbsd: 'v0.2.0',
openbsd: 'v0.6.0'
openbsd: 'v0.7.0'
},

resources: 'v0.9.1'
Expand Down

0 comments on commit 0e13474

Please sign in to comment.