Skip to content

Commit 36a0d1d

Browse files
jsm174bwrsandman
authored andcommitted
actions: bump actions. fixes upload-artifact@v3 failures
1 parent cf79284 commit 36a0d1d

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
CMAKE_VERSION: 3.10.2
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
submodules: recursive
2323
- name: Install Linux dependencies
@@ -57,7 +57,7 @@ jobs:
5757
CC: ${{ matrix.cc }}
5858
CXX: ${{ matrix.cxx }}
5959
steps:
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161
with:
6262
submodules: recursive
6363
- name: Install Linux dependencies
@@ -94,7 +94,7 @@ jobs:
9494
strategy:
9595
fail-fast: false
9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898
with:
9999
submodules: recursive
100100
- name: Install Linux dependencies

.github/workflows/format.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: cmake-format
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
ref: ${{ github.event.pull_request.head.ref }}
1818
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -21,7 +21,7 @@ jobs:
2121
if: startsWith(github.event_name, 'pull_request')
2222
- name: Format CMake files
2323
id: cmake-format
24-
uses: PuneetMatharu/cmake-format-lint-action@main
24+
uses: PuneetMatharu/cmake-format-lint-action@v1.0.6
2525
with:
2626
args: --config-files .cmake-format.py --check
2727
# Run only if a PR and cmake-format has failed
@@ -31,7 +31,7 @@ jobs:
3131
needs: cmake-format-check
3232
if: always() && startsWith(github.event_name, 'pull_request') && needs.cmake-format-check.result == 'failure'
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
with:
3636
ref: ${{ github.event.pull_request.head.ref }}
3737
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -40,7 +40,7 @@ jobs:
4040
if: startsWith(github.event_name, 'pull_request')
4141
- name: Format CMake files
4242
id: cmake-format
43-
uses: PuneetMatharu/cmake-format-lint-action@v1.0.0
43+
uses: PuneetMatharu/cmake-format-lint-action@v1.0.6
4444
with:
4545
args: --config-files .cmake-format.py --in-place
4646
- run: |

.github/workflows/release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
sha: ${{ steps.version.outputs.sha }}
1919
tag: ${{ steps.version.outputs.tag }}
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
submodules: recursive
2424
fetch-depth: 0
@@ -51,7 +51,7 @@ jobs:
5151
CMAKE_INSTALL_DIR: ${{ github.workspace }}/install/
5252

5353
steps:
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
with:
5656
submodules: recursive
5757
- name: Install Linux dependencies
@@ -80,7 +80,7 @@ jobs:
8080
- name: Build
8181
run: |
8282
cmake --build "${{ env.CMAKE_BUILD_DIR }}" --target install --config Release
83-
- uses: actions/upload-artifact@v3
83+
- uses: actions/upload-artifact@v4
8484
with:
8585
name: ${{ matrix.os }}
8686
path: ${{ github.workspace }}/install/
@@ -93,7 +93,7 @@ jobs:
9393
permissions:
9494
contents: write
9595
steps:
96-
- uses: actions/checkout@v3
96+
- uses: actions/checkout@v4
9797
with:
9898
submodules: recursive
9999
fetch-depth: 0
@@ -102,69 +102,69 @@ jobs:
102102
find src/bgfx.cmake -name ".git*" -exec rm -rf {} +
103103
find src/bgfx.cmake -name ".editorconfig" -delete
104104
rm src/bgfx.cmake/.cmake-format.py
105-
- uses: actions/download-artifact@v3
105+
- uses: actions/download-artifact@v4
106106
with:
107107
name: windows-latest
108108
path: ${{ github.workspace }}/install/windows/bgfx.cmake
109-
- uses: actions/download-artifact@v3
109+
- uses: actions/download-artifact@v4
110110
with:
111111
name: ubuntu-latest
112112
path: ${{ github.workspace }}/install/linux/bgfx.cmake
113-
- uses: actions/download-artifact@v3
113+
- uses: actions/download-artifact@v4
114114
with:
115115
name: macos-latest
116116
path: ${{ github.workspace }}/install/macos/bgfx.cmake
117117
- name: Create Source Zip
118-
uses: thedoctor0/zip-release@0.7.1
118+
uses: thedoctor0/zip-release@0.7.6
119119
with:
120120
type: 'zip'
121121
filename: 'bgfx.cmake.${{ needs.version.outputs.tag }}.zip'
122122
directory: 'src'
123123
path: 'bgfx.cmake'
124124
- name: Create Source Tar
125-
uses: thedoctor0/zip-release@0.7.1
125+
uses: thedoctor0/zip-release@0.7.6
126126
with:
127127
type: 'tar'
128128
filename: 'bgfx.cmake.${{ needs.version.outputs.tag }}.tar.gz'
129129
directory: 'src'
130130
path: 'bgfx.cmake'
131131
- name: Create Windows Zip
132-
uses: thedoctor0/zip-release@0.7.1
132+
uses: thedoctor0/zip-release@0.7.6
133133
with:
134134
type: 'zip'
135135
filename: 'bgfx.cmake.binary.windows.${{ needs.version.outputs.tag }}.zip'
136136
directory: 'install/windows'
137137
path: 'bgfx.cmake'
138138
- name: Create Windows Tar
139-
uses: thedoctor0/zip-release@0.7.1
139+
uses: thedoctor0/zip-release@0.7.6
140140
with:
141141
type: 'tar'
142142
filename: 'bgfx.cmake.binary.windows.${{ needs.version.outputs.tag }}.tar.gz'
143143
directory: 'install/windows'
144144
path: 'bgfx.cmake'
145145
- name: Create Linux Zip
146-
uses: thedoctor0/zip-release@0.7.1
146+
uses: thedoctor0/zip-release@0.7.6
147147
with:
148148
type: 'zip'
149149
filename: 'bgfx.cmake.binary.linux.${{ needs.version.outputs.tag }}.zip'
150150
directory: 'install/linux'
151151
path: 'bgfx.cmake'
152152
- name: Create Linux Tar
153-
uses: thedoctor0/zip-release@0.7.1
153+
uses: thedoctor0/zip-release@0.7.6
154154
with:
155155
type: 'tar'
156156
filename: 'bgfx.cmake.binary.linux.${{ needs.version.outputs.tag }}.tar.gz'
157157
directory: 'install/linux'
158158
path: 'bgfx.cmake'
159159
- name: Create MacOS Zip
160-
uses: thedoctor0/zip-release@0.7.1
160+
uses: thedoctor0/zip-release@0.7.6
161161
with:
162162
type: 'zip'
163163
filename: 'bgfx.cmake.binary.macos.${{ needs.version.outputs.tag }}.zip'
164164
directory: 'install/macos'
165165
path: 'bgfx.cmake'
166166
- name: Create MacOS Tar
167-
uses: thedoctor0/zip-release@0.7.1
167+
uses: thedoctor0/zip-release@0.7.6
168168
with:
169169
type: 'tar'
170170
filename: 'bgfx.cmake.binary.macos.${{ needs.version.outputs.tag }}.tar.gz'

0 commit comments

Comments
 (0)