4 Commits

Author SHA1 Message Date
Iain Sproat cc5ebe707c build(deps): bump speckle-automate-github-action from 0.9.0 to 0.10.0 (#28) 2024-10-07 12:42:24 +01:00
dependabot[bot] 0aa892ad33 build(deps): Bump docker/login-action from 3.0.0 to 3.1.0 (#26)
Bumps [docker/login-action](https://github.com/docker/login-action) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/v3.0.0...v3.1.0)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-07 12:30:51 +01:00
dependabot[bot] 3e90df75b7 build(deps): Bump docker/build-push-action from 5.1.0 to 5.3.0 (#27)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5.1.0 to 5.3.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v5.1.0...v5.3.0)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-07 12:30:30 +01:00
dependabot[bot] f58e89de52 build(deps): Bump specklesystems/speckle-automate-github-action (#24)
Bumps [specklesystems/speckle-automate-github-action](https://github.com/specklesystems/speckle-automate-github-action) from 0.9.1 to 0.9.2.
- [Release notes](https://github.com/specklesystems/speckle-automate-github-action/releases)
- [Commits](https://github.com/specklesystems/speckle-automate-github-action/compare/0.9.1...0.9.2)

---
updated-dependencies:
- dependency-name: specklesystems/speckle-automate-github-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-07 12:30:10 +01:00
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -35,6 +35,7 @@ Your Speckle Token must have write permissions for the Speckle Function with thi
#### `speckle_function_input_schema_file_path`
The path to a file containing a JSON Schema. This JSON Schema defines the parameters required by the Function. The JSON Schema will be used to automatically create the User Interface displayed to users of your Function in Speckle Automate. Users will be able to provide their data to customise the Function.
This can be an absolute path, or a path relative to the Home directory of the GitHub Action runner.
Defaults to `./input-schema.json`
+3 -3
View File
@@ -81,7 +81,7 @@ runs:
- name: Set up Docker Buildx # required to enable caching of docker build
uses: docker/setup-buildx-action@v3
- name: Log in to Speckle Automate Docker registry
uses: docker/login-action@v3.0.0
uses: docker/login-action@v3.1.0
with:
registry: ${{ inputs.speckle_automate_url }}
username: ${{ inputs.speckle_token }}
@@ -103,7 +103,7 @@ runs:
exit 1
fi
- name: Build and push Docker image
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v5.3.0
with:
context: ${{ inputs.docker_context }}
file: ${{ inputs.dockerfile_path }}
@@ -113,7 +113,7 @@ runs:
cache-from: type=registry,ref=${{ env.automateHost }}/${{ inputs.speckle_function_id }}:buildcache
cache-to: type=registry,ref=${{ env.automateHost }}/${{ inputs.speckle_function_id }}:buildcache,mode=max
- name: Speckle Automate function version publisher
uses: specklesystems/speckle-automate-github-action@0.9.1
uses: specklesystems/speckle-automate-github-action@0.10.0
id: register_speckle_function_version
with:
speckle_automate_url: ${{ inputs.speckle_automate_url }}