{"id":28344552,"url":"https://github.com/chrispsheehan/just-aws-oidc-action","last_synced_at":"2026-02-02T02:03:23.811Z","repository":{"id":293683190,"uuid":"984842496","full_name":"chrispsheehan/just-aws-oidc-action","owner":"chrispsheehan","description":"This GitHub Action sets up just, authenticates to AWS via OIDC, and runs a specified just recipe — useful for clean, repeatable, script-based workflows in infrastructure, DevOps, and CI/CD pipelines.","archived":false,"fork":false,"pushed_at":"2026-01-26T15:03:52.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-27T03:56:12.790Z","etag":null,"topics":["aws","cicd","just","oidc"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chrispsheehan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-16T15:45:14.000Z","updated_at":"2026-01-26T15:03:52.000Z","dependencies_parsed_at":"2025-05-16T16:22:06.051Z","dependency_job_id":"c71e237e-acd5-44f7-bee0-6e45a55f9690","html_url":"https://github.com/chrispsheehan/just-aws-oidc-action","commit_stats":null,"previous_names":["chrispsheehan/just-aws-oidc-action"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/chrispsheehan/just-aws-oidc-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrispsheehan%2Fjust-aws-oidc-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrispsheehan%2Fjust-aws-oidc-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrispsheehan%2Fjust-aws-oidc-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrispsheehan%2Fjust-aws-oidc-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrispsheehan","download_url":"https://codeload.github.com/chrispsheehan/just-aws-oidc-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrispsheehan%2Fjust-aws-oidc-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29001516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T01:32:03.847Z","status":"online","status_checked_at":"2026-02-02T02:00:07.448Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","cicd","just","oidc"],"created_at":"2025-05-27T10:21:29.569Z","updated_at":"2026-02-02T02:03:23.807Z","avatar_url":"https://github.com/chrispsheehan.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Execute Just Command with AWS OIDC\n\nThis GitHub Action sets up [`just`](https://github.com/casey/just), authenticates to AWS via OIDC, and runs a specified **just recipe** — useful for clean, repeatable, script-based workflows in infrastructure, DevOps, and CI/CD pipelines.\n\n---\n\n## 🚀 Features\n\n- Installs a specific version of [`just`](https://github.com/casey/just)\n- Configures AWS credentials using GitHub OIDC\n- Executes any `just` command (recipe)\n- Captures and returns the final line of output as an action output\n\n---\n\n## 📥 Inputs\n\n| Name               | Description                                      | Required | Default      |\n|--------------------|--------------------------------------------------|----------|--------------|\n| `just_version`     | Version of `just` to install                     | ❌        | `1.0.0`      |\n| `aws_region`       | AWS region                                       | ❌        | `eu-west-2`  |\n| `aws_oidc_role_arn`| ARN of the IAM role to assume via OIDC           | ✅        | —            |\n| `just_action`      | The `just` recipe to execute                     | ✅        | —            |\n| `mask_result`      | Use to mask value in CI                          | ❌        | `false`      |\n\n---\n\n## 📤 Outputs\n\n| Name           | Description                                |\n|----------------|--------------------------------------------|\n| `just_outputs` | Output of the `just` command (last line)   |\n\n---\n\n## 🛠 Example Usage\n\n```just\nlambda-get-version:\n    #!/usr/bin/env bash\n    aws lambda get-alias \\\n        --function-name \"$FUNCTION_NAME\" --name \"$ALIAS_NAME\" \\\n        --query 'FunctionVersion' --output text\n```\n\n```yaml\njobs:\n  run-just:\n    runs-on: ubuntu-latest\n    permissions:\n      id-token: write\n      contents: read\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: get lambda version\n        id: lambda-get-version\n        uses: chrispsheehan/just-aws-oidc-action@0.1.2\n        env:\n          FUNCTION_NAME: dev-lambda-function\n          ALIAS_NAME: dev\n        with:\n          aws_oidc_role_arn: ${{ env.AWS_OIDC_ROLE_ARN }}\n          just_action: lambda-get-version\n\n      - name: read output from script\n        run: |\n          echo \"Script output: ${{ steps.lambda-get-version.outputs.just_outputs }}\"\n          VERSION=\"${{ steps.lambda-get-version.outputs.just_outputs }}\"\n          echo \"Parsed VERSION=$VERSION\"\n```\n\n```just\nget-secret:\n    #!/usr/bin/env bash\n    echo secret_key_or_id\n```\n\n```yaml\njobs:\n  run-just:\n    runs-on: ubuntu-latest\n    permissions:\n      id-token: write\n      contents: read\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: get secret\n        id: get-secret\n        uses: chrispsheehan/just-aws-oidc-action@0.1.2\n        with:\n          aws_oidc_role_arn: ${{ env.AWS_OIDC_ROLE_ARN }}\n          just_action: get-secret\n\n      - name: read output from script\n        run: |\n          echo \"Script output will appear *** in CI logs: ${{ steps.get-secret.outputs.just_outputs }}\"\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrispsheehan%2Fjust-aws-oidc-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrispsheehan%2Fjust-aws-oidc-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrispsheehan%2Fjust-aws-oidc-action/lists"}