Skip to content

Commit c8fb250

Browse files
Bump the all-actions group across 1 directory with 3 updates
Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/upload-pages-artifact` from 3.0.1 to 4.0.0 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3.0.1...v4.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-pages-artifact dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 37df09d commit c8fb250

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-24.04
99
steps:
1010
- name: Checkout RFC
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1212
- name: Install dependencies
1313
run: sudo apt update && sudo apt install -y make python3-pip libxml2-dev libxslt1-dev libyaml-dev
1414
- name: Install pipenv
@@ -20,12 +20,12 @@ jobs:
2020
- name: build txt
2121
run: pipenv run make openvpn-wire-protocol.txt
2222
- name: Archive html artifact
23-
uses: actions/upload-artifact@v4
23+
uses: actions/upload-artifact@v5
2424
with:
2525
name: openvpn-wire-protocol.html
2626
path: openvpn-wire-protocol.html
2727
- name: Archive txt artifact
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v5
2929
with:
3030
name: openvpn-wire-protocol.txt
3131
path: openvpn-wire-protocol.txt
@@ -39,7 +39,7 @@ jobs:
3939
- name: Upload static files as artifact
4040
id: deployment
4141
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }}
42-
uses: actions/upload-pages-artifact@v3.0.1
42+
uses: actions/upload-pages-artifact@v4.0.0
4343
with:
4444
path: pages/
4545

0 commit comments

Comments
 (0)