diff --git a/.github/workflows/mac-artifact.yml b/.github/workflows/mac-artifact.yml index a3151d0..1e33fa7 100644 --- a/.github/workflows/mac-artifact.yml +++ b/.github/workflows/mac-artifact.yml @@ -2,7 +2,7 @@ name: Mac Artifact on: push: - branches: [main] + branches: [main, actionsHub] pull_request: branches: [main] workflow_call: @@ -14,7 +14,10 @@ on: jobs: build: - runs-on: macos-11 + strategy: + matrix: + os: [macos-12, macos-14] + runs-on: ${{ matrix.os }} steps: - name: Get checkout directory uses: haya14busa/action-cond@v1 @@ -60,7 +63,7 @@ jobs: check-latest: true cache: true cache-dependency-path: ${{ steps.working-dir.outputs.value }}/go.sum - - uses: kenchan0130/actions-system-info@master + - uses: kenchan0130/actions-system-info@v1.3.0 id: system-info - name: Cache asconfig uses: actions/cache@v3 @@ -82,7 +85,7 @@ jobs: run: | sudo make install asconfig --version 2>&1 | grep "Aerospike Config" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ steps.system-info.outputs.platform }}-${{ runner.arch }}-${{ runner.os }}-${{ steps.system-info.outputs.release }}-asconfig path: ${{ steps.working-dir.outputs.value }}/bin/asconfig diff --git a/.github/workflows/snyk-test.yml b/.github/workflows/snyk-test.yml index 9777335..f2c598a 100644 --- a/.github/workflows/snyk-test.yml +++ b/.github/workflows/snyk-test.yml @@ -25,7 +25,7 @@ jobs: env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - name: Upload snyk results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: asconfig-snyk.txt path: asconfig-snyk.txt \ No newline at end of file