diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index edaa06d..b8ddbf6 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: toolchain uses: actions-rs/toolchain@v1 with: @@ -45,7 +45,7 @@ jobs: fail_ci_if_error: false verbose: true - name: archive code coverage results - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: code-coverage-report path: cobertura.xml @@ -55,7 +55,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: optimize run: make optimize - name : release diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1e07b2a..6fa5a22 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,7 +23,7 @@ jobs: name: Test ATS Smart Contract steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Add wasm32 target run: | rustup target add wasm32-unknown-unknown @@ -33,7 +33,6 @@ jobs: - name: Run ATS Test uses: provenance-io/provenance-testing-action@v1.1.2 with: - github_token: ${{ secrets.GITHUB_TOKEN }} provenance_version: "v1.14.1" test_script: "./scripts/test_ats.sh" - wasm_path: "./artifacts/ats_smart_contract.wasm" \ No newline at end of file + wasm_path: "./artifacts/ats_smart_contract.wasm"