diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98e26152..3f9539e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 @@ -140,7 +140,7 @@ jobs: FREEBSD_ID: freebsd15 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/download-artifact@v6 with: diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index e8dd2909..2f0644ce 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@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 20 @@ -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: @@ -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: @@ -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: @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21879948..8f239ced 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | @@ -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: @@ -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