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
2 changes: 1 addition & 1 deletion .github/workflows/build-test-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Login to Quay registry
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Check Licenses
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
- name: Install devbox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-gov-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cleanup-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
environment: openshift-test
steps:
- name: Checkout codebase
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloud-tests-filter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
production-code-changed: ${{ steps.paths-filter.outputs.production-code-changed }}
run-cloud-tests: ${{ steps.tests-filter.outputs.run-cloud-tests }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
- uses: dorny/paths-filter@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devbox-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
environment: release
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Generate GitHub App Token
id: generate_token
uses: actions/create-github-app-token@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-header-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
- name: Install devbox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openshift-upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if: ${{ vars.SKIP_OPENSHIFT != 'true' }}
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
fetch-depth: 0 # required for tags
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
QUAY_REPO: quay.io/mongodb/mongodb-atlas-kubernetes-operator-prerelease
steps:
- name: Checkout PR commit
uses: actions/checkout@v4
uses: actions/checkout@v5

# Login in all the needed registries
- name: Log in to the GitHub Container Registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rebuild-released-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
releases: ${{ steps.releases.outputs.releases }}
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
echo "Building ${{matrix.version}} version"
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: "v${{ matrix.version }}"
submodules: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 #required for tags

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
commit_sha: ${{ steps.resolve.outputs.commit_sha }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Log in to Docker registry
uses: docker/login-action@v3
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
QUAY_CERTIFIED_IMAGE_URL: quay.io/mongodb/mongodb-atlas-kubernetes-operator:${{ github.event.inputs.version }}-certified
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{ needs.image2commit.outputs.commit_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
certified: true
steps:
- name: Clone/Checkout Atlas Operator
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: main
path: "mongodb-atlas-kubernetes"
fetch-depth: 0
- name: Clone/Checkout releases repositories
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ matrix.repository }}
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
cat "$GITHUB_OUTPUT"

- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sboms-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ inputs.version }}
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-helm-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout AKO repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand All @@ -37,7 +37,7 @@ jobs:
helm-charts

- name: Checkout Helm charts repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: mongodb/helm-charts
token: ${{ steps.generate_token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e-gov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
- name: Create k8s Kind Cluster
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
outputs:
test_matrix: ${{ steps.compute.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Compute K8s matrix/versions for testing
id: compute
Expand All @@ -34,7 +34,7 @@ jobs:
env:
REPO: ghcr.io/${{ github.repository_owner }}/mongodb-atlas-kubernetes-operator-prerelease
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
"networkpeering-controller",
]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
k8s: ${{ fromJson(needs.prepare-e2e.outputs.test_matrix) }}
test: ["helm-ns", "helm-update", "helm-wide"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-int.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
- name: Install devbox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
submodules: 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-e2e2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
e2e2_matrix: ${{ steps.set-matrix.outputs.e2e2_matrix }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.branchName || github.head_ref }}

Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:

- name: Checkout if cache repo files missed
if: steps.get-repo-files-from-cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
submodules: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests-selectable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
e2e_gov_matrix: ${{ steps.set-matrix.outputs.e2e_gov_matrix }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.branchName || github.head_ref }}

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
REPOSITORY: ${{ github.repository_owner }}/mongodb-atlas-kubernetes-operator-prerelease
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
submodules: true
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
GHCR_BUNDLES_REPO: ghcr.io/mongodb/mongodb-atlas-kubernetes-bundles-prerelease
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
submodules: true
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
name: "integration: ${{ matrix.test }}"
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:

- name: Checkout if cache repo files missed
if: steps.get-repo-files-from-cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
submodules: true
Expand Down Expand Up @@ -381,7 +381,7 @@ jobs:

- name: Checkout if cache repo files missed
if: steps.get-repo-files-from-cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
submodules: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout AKO repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install devbox
uses: jetify-com/devbox-install-action@v0.13.0
Expand All @@ -38,7 +38,7 @@ jobs:
helm-charts

- name: Checkout Helm charts repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: mongodb/helm-charts
token: ${{ steps.generate_token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
JWT_RSA_PEM_KEY_BASE64: ${{ secrets.AKO_RELEASER_RSA_KEY_BASE64 }}
steps:
- name: Checkout AKO repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.BRANCH }}
- name: Generate GitHub App Token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-manifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Validate Manifests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha}}
- name: Install devbox
Expand Down
Loading