Skip to content

Commit

Permalink
Fix #74: Add support for FreeBSD 14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Feb 15, 2024
1 parent 5272ec7 commit 0969996
Show file tree
Hide file tree
Showing 6 changed files with 13 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 @@ -25,6 +25,7 @@ jobs:
fail-fast: false
matrix:
version:
- '14.0'
- '13.2'
- '13.1'
- '13.0'
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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]

### Added
- Add support for FreeBSD 14.0 ([#74](https://github.com/cross-platform-actions/action/issues/74))

### Changed
- Run any SSH commands to the VM in verbose mode when debug mode is enabled

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 @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v3

- name: Test
uses: cross-platform-actions/action@v0.15.0
uses: cross-platform-actions/action@v0.21.1
with:
operating_system: freebsd
version: '13.2'
Expand All @@ -49,7 +49,7 @@ 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.4, one which runs
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.

```yaml
Expand All @@ -65,7 +65,7 @@ jobs:
os:
- name: freebsd
architecture: x86-64
version: '13.2'
version: '14.0'
host: macos-12

- name: openbsd
Expand All @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v3

- name: Test on ${{ matrix.os.name }}
uses: cross-platform-actions/action@v0.15.0
uses: cross-platform-actions/action@v0.22.0
env:
MY_ENV1: MY_ENV1
MY_ENV2: MY_ENV2
Expand Down Expand Up @@ -182,6 +182,7 @@ operating system will list which versions are supported.

| Version | x86-64 | arm64 |
| ------- | ------ | ------ |
| 14.0 |||
| 13.2 |||
| 13.1 |||
| 13.0 |||
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const version = {
operating_system: {
freebsd: 'v0.5.0',
freebsd: 'v0.6.0-rc2',
netbsd: 'v0.2.0',
openbsd: 'v0.7.0'
},
Expand Down

0 comments on commit 0969996

Please sign in to comment.