Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
/usr/local/bin/VBoxManage controlvm ${{ matrix.FREEBSD_VERSION }} poweroff || true
/usr/local/bin/VBoxManage snapshot ${{matrix.FREEBSD_VERSION}} restore initial

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg
path: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
/usr/local/bin/VBoxManage controlvm ${{ matrix.PFSENSE_VERSION }} poweroff || true
/usr/local/bin/VBoxManage snapshot ${{ matrix.PFSENSE_VERSION }} restore initial

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: openapi-${{ matrix.PFSENSE_VERSION }}.json
path: openapi-${{ matrix.PFSENSE_VERSION }}.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
/usr/local/bin/VBoxManage controlvm ${{ matrix.FREEBSD_VERSION }} poweroff || true
/usr/local/bin/VBoxManage snapshot ${{matrix.FREEBSD_VERSION}} restore initial

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: pfSense-${{ matrix.PFSENSE_VERSION }}-pkg-RESTAPI.pkg
path: pfSense-${{ matrix.PFSENSE_VERSION }}-pkg-RESTAPI.pkg
Expand Down Expand Up @@ -112,13 +112,13 @@ jobs:
/usr/local/bin/VBoxManage snapshot pfSense-${{ env.DEFAULT_PFSENSE_VERSION }}-RELEASE restore initial

- name: Upload OpenAPI schema
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: openapi.json
path: openapi.json

- name: Upload GraphQL schema
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: schema.graphql
path: schema.graphql
Expand Down