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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
FREEBSD_ID: freebsd15

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup FreeBSD build VM
run: |
/usr/local/bin/VBoxManage controlvm ${{ matrix.FREEBSD_VERSION }} poweroff || true
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- PFSENSE_VERSION: pfSense-2.8.1-RELEASE
FREEBSD_ID: freebsd15
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- PFSENSE_VERSION: pfSense-2.8.1-RELEASE
FREEBSD_ID: freebsd15
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: openapi-${{ matrix.PFSENSE_VERSION }}.json
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
FREEBSD_ID: freebsd15

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/download-artifact@v6
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
check_prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
Expand All @@ -17,7 +17,7 @@ jobs:
check_black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: psf/black@stable

lint_php:
Expand All @@ -27,7 +27,7 @@ jobs:
matrix:
PHP_VERSION: ["8.2"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Setup PHP ${{ matrix.PHP_VERSION }}"
uses: shivammathur/setup-php@v2
with:
Expand All @@ -46,7 +46,7 @@ jobs:
matrix:
PYTHON_VERSION: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.PYTHON_VERSION }}
uses: actions/setup-python@v6
with:
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
needs: ["lint_php"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check phpdoc build
run: |
wget https://phpdoc.org/phpDocumentor.phar -O phpdoc
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
PFSENSE_VERSION: "25.07.1"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup FreeBSD build VM
run: |
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: self-hosted
needs: [release_pkg]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup Pages
uses: actions/configure-pages@v5.0.0
Expand Down
Loading