diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c58de7b4..c5854b3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: FREEBSD_ID: freebsd15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup FreeBSD build VM run: | /usr/local/bin/VBoxManage controlvm ${{ matrix.FREEBSD_VERSION }} poweroff || true @@ -58,7 +58,7 @@ jobs: - PFSENSE_VERSION: pfSense-2.8.0-RELEASE FREEBSD_ID: freebsd15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/download-artifact@v4 with: name: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg @@ -106,7 +106,7 @@ jobs: - PFSENSE_VERSION: pfSense-2.8.0-RELEASE FREEBSD_ID: freebsd15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/download-artifact@v4 with: name: openapi-${{ matrix.PFSENSE_VERSION }}.json @@ -134,7 +134,7 @@ jobs: FREEBSD_ID: freebsd15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/download-artifact@v4 with: diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 424fba23..f2093228 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -5,7 +5,7 @@ jobs: check_prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: 20 @@ -17,7 +17,7 @@ jobs: check_black: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: psf/black@stable lint_php: @@ -27,7 +27,7 @@ jobs: matrix: PHP_VERSION: ["8.2"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: "Setup PHP ${{ matrix.PHP_VERSION }}" uses: shivammathur/setup-php@v2 with: @@ -46,7 +46,7 @@ jobs: matrix: PYTHON_VERSION: ["3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.PYTHON_VERSION }} uses: actions/setup-python@v5 with: @@ -62,7 +62,7 @@ jobs: runs-on: ubuntu-latest needs: ["lint_php"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Check phpdoc build run: | wget https://phpdoc.org/phpDocumentor.phar -O phpdoc diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71b6ac90..ea5a236b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: PFSENSE_VERSION: "24.11" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup FreeBSD build VM run: | @@ -66,7 +66,7 @@ jobs: runs-on: self-hosted needs: [release_pkg] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/download-artifact@v4 with: @@ -123,7 +123,7 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup Pages uses: actions/configure-pages@v5.0.0