diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc4ee6bc6..3c8ecf99f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,9 +18,9 @@ jobs: python: ['3.8', '3.9', '3.10'] steps: - - uses: compas-dev/compas-actions.build@v2 + - uses: compas-dev/compas-actions.build@v3 with: - test_lint: true - test_compas: true + invoke_lint: true + check_import: true use_conda: true python: ${{ matrix.python }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5a683392b..b577432c3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,7 +14,8 @@ jobs: docs: runs-on: windows-latest steps: - - uses: compas-dev/compas-actions.docs@v2 + - uses: compas-dev/compas-actions.docs@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} use_conda: true + doc_url: https://compas.dev/compas_fea2/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b775bf307..24adf3076 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,12 +14,12 @@ jobs: python: ['3.8', '3.9', '3.10'] steps: - - uses: compas-dev/compas-actions.build@v2 + - uses: compas-dev/compas-actions.build@v3 with: - test_lint: true - test_compas: true - use_conda: true python: ${{ matrix.python }} + invoke_lint: true + use_conda: true + check_import: true Publish: needs: build diff --git a/CHANGELOG.md b/CHANGELOG.md index 88361aae8..d893f59d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Updated existing workflows to latest. * Build tests are temporarily disabled. +* Updated `compas-actions.build` and `compas-actions.doc` workflows to v3. ### Removed