Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
{
"actions/artifactory-login": "1.0.0",
"actions/build-docker": "1.0.0",
"actions/push-docker": "1.0.0",
"actions/build-and-push-helm": "1.0.0",
"actions/eslint": "1.0.0",
"actions/helm-lint": "1.0.0",
"actions/openapi-lint": "1.0.0",
"actions/update-artifacts-file": "1.0.0",
".": "6.0.0"
}
2 changes: 1 addition & 1 deletion actions/artifactory-login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ authenticated operations like pulling or pushing images.
<!-- x-release-please-start-version -->
```yaml
- name: Artifactory Login
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v0.0.0
with:
registry: ${{ secrets.ACR_URL }}
username: ${{ secrets.ACR_PUSH_USER }}
Expand Down
7 changes: 4 additions & 3 deletions actions/build-and-push-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,18 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi

```yaml
- name: Artifactory Login
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v0.0.0
with:
registry: ${{ secrets.ACR_URL }}
username: ${{ secrets.ACR_PUSH_USER }}
password: ${{ secrets.ACR_PUSH_TOKEN }}

- name: Build and Push Helm Chart
uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v1.0.0
uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v0.0.0
with:
context: ./infra/monitoring
domain: infra
registry: ${{ secrets.ACR_URL }}
```
<!-- x-release-please-end-version -->

<!-- x-release-please-end-version -->
4 changes: 2 additions & 2 deletions actions/build-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ This GitHub Action builds a Docker image from a specified context

```yaml
- name: Artifactory Login
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v0.0.0
with:
registry: ${{ secrets.ACR_URL }}
username: ${{ secrets.ACR_PUSH_USER }}
password: ${{ secrets.ACR_PUSH_TOKEN }}

- name: Build Docker Image
uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v1.0.0
uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v0.0.0
with:
context: .
domain: infra
Expand Down
2 changes: 1 addition & 1 deletion actions/eslint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This GitHub Action installs dependencies and runs ESLint to lint your project co

```yaml
- name: Run ESLint
uses: MapColonies/shared-workflows/actions/eslint@eslint-v1.0.0
uses: MapColonies/shared-workflows/actions/eslint@eslint-v0.0.0
with:
path: ./test
```
Expand Down
2 changes: 1 addition & 1 deletion actions/helm-lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ It detects which charts have changed and only tests those.

```yaml
- name: Lint and Test Charts
uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1.0.0
uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v0.0.0
with:
chartDirs: infra/monitoring,infra/sftpgo
```
Expand Down
2 changes: 1 addition & 1 deletion actions/openapi-lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This GitHub Action installs Node.js dependencies, runs code linting, and validat

```yaml
- name: Run OpenAPI Lint
uses: MapColonies/shared-workflows/actions/openapi-lint@openapi-lint-v1.0.0
uses: MapColonies/shared-workflows/actions/openapi-lint@openapi-lint-v0.0.0
with:
node_version: "20"
openapi-file: "./openapi3.yaml"
Expand Down
6 changes: 3 additions & 3 deletions actions/push-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ jobs:
uses: actions/checkout@v4

- name: Login to Registry
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v0.0.0
with:
registry: ${{ secrets.ACR_URL }}
username: ${{ secrets.ACR_PUSH_USER }}
password: ${{ secrets.ACR_PUSH_TOKEN }}

- name: Build Docker Image
id: build
uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v1.0.0
uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v0.0.0
with:
context: ./test
scope: infra
registry: ${{ secrets.ACR_URL }}

- name: Push Docker Image
uses: MapColonies/shared-workflows/actions/push-docker@push-docker-v1.0.0
uses: MapColonies/shared-workflows/actions/push-docker@push-docker-v0.0.0
with:
image_name: $DOCKER_IMAGE_NAME
```
Expand Down
2 changes: 1 addition & 1 deletion actions/update-artifacts-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and

```yaml
- name: Update artifacts.json
uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v1.0.0
uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v0.0.0
with:
scope: infra
artifact_name: "sftpgo"
Expand Down