diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index b9665711..b4713273 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -25,9 +25,9 @@ jobs: uses: styfle/cancel-workflow-action@0.9.1 with: access_token: ${{ github.token }} - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Build manta-signer test server diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d5c9853..a262c331 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: name: Get version runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: echo "VERSION=$(cat Cargo.toml | grep ^version | awk -F'=' '{print $2}' | tr -d '\" ')" >> $GITHUB_ENV outputs: release_version: ${{ env.VERSION }} @@ -54,9 +54,9 @@ jobs: target: darwin steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache Cargo build dir - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-cargo with: @@ -67,7 +67,7 @@ jobs: ${{ matrix.os }}-build- ${{ matrix.os }}- - name: Cache target dir - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-target with: diff --git a/.github/workflows/tag.yaml b/.github/workflows/tag.yaml index c3874214..b31eb9c8 100644 --- a/.github/workflows/tag.yaml +++ b/.github/workflows/tag.yaml @@ -7,11 +7,22 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: '0' - name: Bump version and push tag - uses: anothrNick/github-tag-action@1.36.0 + id: tag_version + uses: anothrNick/github-tag-action@1.39.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} WITH_V: false + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.create_release.outputs.tag }} + release_name: Release ${{ steps.create_release.outputs.tag }} + draft: false + prerelease: true