Skip to content

Commit 91afb63

Browse files
chore: merge changes from master
2 parents ade27ed + c657960 commit 91afb63

File tree

7 files changed

+174
-162
lines changed

7 files changed

+174
-162
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
FREEBSD_ID: freebsd15
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Setup FreeBSD build VM
3030
run: |
3131
/usr/local/bin/VBoxManage controlvm ${{ matrix.FREEBSD_VERSION }} poweroff || true
@@ -60,8 +60,8 @@ jobs:
6060
- PFSENSE_VERSION: pfSense-2.8.1-RELEASE
6161
FREEBSD_ID: freebsd15
6262
steps:
63-
- uses: actions/checkout@v4
64-
- uses: actions/download-artifact@v4
63+
- uses: actions/checkout@v5
64+
- uses: actions/download-artifact@v5
6565
with:
6666
name: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg
6767
path: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg
@@ -110,8 +110,8 @@ jobs:
110110
- PFSENSE_VERSION: pfSense-2.8.1-RELEASE
111111
FREEBSD_ID: freebsd15
112112
steps:
113-
- uses: actions/checkout@v4
114-
- uses: actions/download-artifact@v4
113+
- uses: actions/checkout@v5
114+
- uses: actions/download-artifact@v5
115115
with:
116116
name: openapi-${{ matrix.PFSENSE_VERSION }}.json
117117
path: openapi-${{ matrix.PFSENSE_VERSION }}.json
@@ -140,9 +140,9 @@ jobs:
140140
FREEBSD_ID: freebsd15
141141

142142
steps:
143-
- uses: actions/checkout@v4
143+
- uses: actions/checkout@v5
144144

145-
- uses: actions/download-artifact@v4
145+
- uses: actions/download-artifact@v5
146146
with:
147147
name: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg
148148
path: pfSense-pkg-RESTAPI-${{ env.BUILD_VERSION }}-${{ matrix.FREEBSD_ID }}.pkg

.github/workflows/quality.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
check_prettier:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
- uses: actions/setup-node@v4
1010
with:
1111
node-version: 20
@@ -17,7 +17,7 @@ jobs:
1717
check_black:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: psf/black@stable
2222

2323
lint_php:
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
PHP_VERSION: ["8.2"]
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: "Setup PHP ${{ matrix.PHP_VERSION }}"
3232
uses: shivammathur/setup-php@v2
3333
with:
@@ -46,7 +46,7 @@ jobs:
4646
matrix:
4747
PYTHON_VERSION: ["3.9", "3.10", "3.11"]
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
- name: Set up Python ${{ matrix.PYTHON_VERSION }}
5151
uses: actions/setup-python@v5
5252
with:
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
needs: ["lint_php"]
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
- name: Check phpdoc build
6767
run: |
6868
wget https://phpdoc.org/phpDocumentor.phar -O phpdoc

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
PFSENSE_VERSION: "25.07.1"
3939

4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242

4343
- name: Setup FreeBSD build VM
4444
run: |
@@ -72,9 +72,9 @@ jobs:
7272
runs-on: self-hosted
7373
needs: [release_pkg]
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676

77-
- uses: actions/download-artifact@v4
77+
- uses: actions/download-artifact@v5
7878
with:
7979
name: pfSense-${{ env.DEFAULT_PFSENSE_VERSION }}-pkg-RESTAPI.pkg
8080
path: pfSense-${{ env.DEFAULT_PFSENSE_VERSION }}-pkg-RESTAPI.pkg
@@ -129,7 +129,7 @@ jobs:
129129
name: github-pages
130130
url: ${{ steps.deployment.outputs.page_url }}
131131
steps:
132-
- uses: actions/checkout@v4
132+
- uses: actions/checkout@v5
133133

134134
- name: Setup Pages
135135
uses: actions/configure-pages@v5.0.0
@@ -149,13 +149,13 @@ jobs:
149149
mv ./site/* ./www/
150150
151151
- name: Download OpenAPI schema
152-
uses: actions/download-artifact@v4
152+
uses: actions/download-artifact@v5
153153
with:
154154
name: openapi.json
155155
path: openapi.json
156156

157157
- name: Download GraphQL schema
158-
uses: actions/download-artifact@v4
158+
uses: actions/download-artifact@v5
159159
with:
160160
name: schema.graphql
161161
path: schema.graphql
@@ -201,7 +201,7 @@ jobs:
201201
mv ./.phpdoc/build/* ./www/php-docs/
202202
203203
- name: Upload artifact
204-
uses: actions/upload-pages-artifact@v3.0.1
204+
uses: actions/upload-pages-artifact@v4.0.0
205205
with:
206206
path: "./www"
207207

0 commit comments

Comments
 (0)