MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update action versions

+11 -7
+1 -1
.github/actions/build-native-deps/action.yml
··· 40 40 41 41 - name: Cache native deps 42 42 id: cache 43 - uses: actions/cache@v4 43 + uses: actions/cache@v5 44 44 with: 45 45 path: ${{ inputs.prefix }} 46 46 key: deps-${{ runner.os }}-${{ runner.arch }}-${{ steps.deps-hash.outputs.hash }}-${{ hashFiles('.github/versions.json') }}-v1
+2 -2
.github/actions/build-project/action.yml
··· 58 58 working-directory: src/tools 59 59 60 60 - name: Cache vendor deps 61 - uses: actions/cache@v4 61 + uses: actions/cache@v5 62 62 with: 63 63 path: | 64 64 vendor/*/ 65 65 build/vendor 66 - key: vendor-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('vendor/*.wrap') }} 66 + key: vendor-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('vendor/*.wrap', 'vendor/packagefiles/**', 'meson/deps/meson.build') }} 67 67 68 68 - name: Configure and build 69 69 shell: bash
+1 -1
.github/actions/setup-zig/action.yml
··· 25 25 26 26 - name: Cache Zig 27 27 id: cache 28 - uses: actions/cache@v4 28 + uses: actions/cache@v5 29 29 with: 30 30 path: ${{ steps.platform.outputs.install_path }} 31 31 key: zig-${{ steps.platform.outputs.slug }}-${{ inputs.version }}
+3 -3
.github/workflows/build-platform.yml
··· 117 117 shell: bash 118 118 119 119 - name: Checkout 120 - uses: actions/checkout@v4 120 + uses: actions/checkout@v5 121 121 with: 122 122 submodules: recursive 123 123 ··· 211 211 212 212 # === UPLOAD ARTIFACTS === 213 213 - name: Upload binary 214 - uses: actions/upload-artifact@v4 214 + uses: actions/upload-artifact@v6 215 215 with: 216 216 name: ${{ steps.config.outputs.artifact_name }} 217 217 path: | ··· 223 223 run: echo "${{ steps.build.outputs.version }}" > version.txt 224 224 225 225 - name: Upload version info 226 - uses: actions/upload-artifact@v4 226 + uses: actions/upload-artifact@v6 227 227 with: 228 228 name: version-${{ steps.config.outputs.artifact_name }} 229 229 path: version.txt
+4
meson/deps/meson.build
··· 20 20 boringssl_warning_flag = cc.get_argument_syntax() == 'msvc' ? '/W0' : '-w' 21 21 boringssl_opts.append_compile_args('c', boringssl_warning_flag) 22 22 boringssl_opts.append_compile_args('cpp', boringssl_warning_flag) 23 + if host_machine.system() == 'windows' 24 + boringssl_opts.append_compile_args('c', '-DOPENSSL_WINDOWS') 25 + boringssl_opts.append_compile_args('cpp', '-DOPENSSL_WINDOWS') 26 + endif 23 27 boringssl_opts.set_override_option('warning_level', '0') 24 28 boringssl_opts.set_override_option('optimization', 's') 25 29