Skip to content

Commit a391a96

Browse files
committed
Update github actions
1 parent eff887c commit a391a96

8 files changed

Lines changed: 21 additions & 17 deletions

.github/workflows/build-linux-clang.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: "Setup required packages"
1515
run: sudo apt-get install -y binutils-dev libc++-dev libssl-dev uuid-dev
1616

1717
- name: "Setup clang"
18-
uses: egor-tensin/setup-clang@v1
18+
uses: egor-tensin/setup-clang@v2
1919

2020
- name: "Setup cmake"
2121
run: cmake --version

.github/workflows/build-linux-gcc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: "Setup required packages"
1515
run: sudo apt-get install -y binutils-dev libssl-dev uuid-dev
1616

1717
- name: "Setup gcc"
18-
uses: egor-tensin/setup-gcc@v1
18+
uses: egor-tensin/setup-gcc@v2
1919

2020
- name: "Setup cmake"
2121
run: cmake --version

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
build:
1010
runs-on: macos-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: "Setup python"
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.x'
1818

.github/workflows/build-windows-cygwin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
shell: cmd
1717
run: git config --global core.autocrlf input
1818

19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: "Setup Cygwin"
22-
uses: cygwin/cygwin-install-action@v2
22+
uses: cygwin/cygwin-install-action@v6
2323
with:
2424
platform: x86_64
2525
packages: automake make cmake gcc-g++ doxygen graphviz libssl-devel libuuid-devel

.github/workflows/build-windows-mingw.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ jobs:
99
build:
1010
runs-on: windows-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
12+
- uses: actions/checkout@v6
1413

1514
- name: "Setup cmake"
1615
run: cmake --version

.github/workflows/build-windows-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run:
1313
shell: msys2 {0}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: "Setup MSYS2"
1818
uses: msys2/setup-msys2@v2

.github/workflows/build-windows-vs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: windows-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: "Setup Visual Studio"
1515
uses: egor-tensin/vs-shell@v2

.github/workflows/doxygen.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,28 @@ jobs:
1414
git config --global user.name "${{ github.actor }}"
1515
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
1616
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- name: "Setup cmake"
2020
run: cmake --version
2121

2222
- name: "Setup doxygen"
23+
uses: ssciwr/doxygen-install@v1
24+
25+
- name: "Setup graphviz"
2326
run: |
24-
sudo apt-get -y install doxygen graphviz binutils-dev
25-
doxygen --version
26-
dot -V
27+
sudo apt-get -y install graphviz binutils-dev
2728
2829
- name: "Setup gil"
2930
run: |
3031
pip3 install gil
31-
cd sample
3232
gil update
3333
34+
- name: "Doxygen version"
35+
run: |
36+
doxygen --version
37+
dot -V
38+
3439
- name: "Doxygen"
3540
env:
3641
GITHUB_ACTOR: ${{ github.actor }}

0 commit comments

Comments
 (0)