diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 7934cad..1878142 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -46,9 +46,10 @@ jobs: - uses: "bckground/actions/setup-mise@main" with: - mise_envs: "ci" - cache_name: "starlark-go" - s3_credentials: "${{ env.S3_CREDENTIALS }}" + mise-envs: "ci" + cache-name: "starlark-go" + cache-backend: "github" + s3-credentials: "${{ env.S3_CREDENTIALS }}" - name: "Run prettier" run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7bde9d7..01c9970 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,13 +50,15 @@ jobs: - uses: "bckground/actions/setup-mise@main" with: - mise_envs: "ci" - s3_credentials: ${{ env.S3_CREDENTIALS }} + mise-envs: "ci" + cache-backend: "github" + s3-credentials: ${{ env.S3_CREDENTIALS }} - id: "go-restore-caches" uses: "bckground/actions/cache-go/restore@main" with: - s3_credentials: ${{ env.S3_CREDENTIALS }} + cache-backend: "github" + s3-credentials: ${{ env.S3_CREDENTIALS }} - name: "Download all go dependencies" run: | @@ -73,7 +75,8 @@ jobs: check_name: "test report / all" report_paths: "junitreport.xml" - - if: ${{ (github.ref_name == github.event.repository.default_branch || steps.go-restore-caches.outputs.cache_hit == 'false') && (success() || failure()) }} + - if: ${{ (github.ref_name == github.event.repository.default_branch || steps.go-restore-caches.outputs.cache-hit == 'false') && (success() || failure()) }} uses: "bckground/actions/cache-go/save@main" with: - s3_credentials: ${{ env.S3_CREDENTIALS }} + cache-backend: "github" + s3-credentials: ${{ env.S3_CREDENTIALS }} diff --git a/README.md b/README.md index c309c5e..4aee061 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,12 @@ # Starlark in Go -[![Go Tests](https://github.com/google/starlark-go/actions/workflows/tests.yml/badge.svg)](https://github.com/google/starlark-go/actions/workflows/tests.yml) +[![Go Tests](https://github.com/bckground/starlark-go/actions/workflows/test.yml/badge.svg)](https://github.com/bckground/starlark-go/actions/workflows/test.yml) [![Go Reference](https://pkg.go.dev/badge/go.starlark.net/starlark.svg)](https://pkg.go.dev/go.starlark.net/starlark) +> [!IMPORTANT] +> This repository is a **hard fork** of https://github.com/google/starlark-go. + This is the home of the _Starlark in Go_ project. Starlark in Go is an interpreter for Starlark, implemented in Go. Starlark was formerly known as Skylark.