Skip to content

Commit

Permalink
Add support for OpenBSD 7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Apr 12, 2024
1 parent 141cc29 commit 128261b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ jobs:
fail-fast: false
matrix:
version:
- '7.5'
- '7.4'
- '7.3'
- '7.2'
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add support for FreeBSD 13.3
- Add support for NetBSD 10.0
- Add support for NetBSD ARM64 ([#55](https://github.com/cross-platform-actions/action/issues/55))
- Add support for OpenBSD ([openbsd-builder#16](https://github.com/cross-platform-actions/openbsd-builder/issues/16))

## [0.23.0] - 2024-02-18
### Added
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.

8 changes: 4 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 14.0, one which runs OpenBSD 7.4, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.4 on ARM64.
One which will run on FreeBSD 14.0, one which runs OpenBSD 7.5, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.5 on ARM64.
```yaml
name: CI
Expand All @@ -69,11 +69,11 @@ jobs:

- name: openbsd
architecture: x86-64
version: '7.4'
version: '7.5'

- name: openbsd
architecture: arm64
version: '7.4'
version: '7.5'

- name: netbsd
architecture: x86-64
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.7.0',
netbsd: 'v0.3.0',
openbsd: 'v0.7.0'
openbsd: 'v0.8.0'
},

resources: 'v0.11.0'
Expand Down

0 comments on commit 128261b

Please sign in to comment.