diff --git a/.github/workflows/deploy-docs.yaml b/.github/workflows/deploy-docs.yaml index b3a710790..76d68a63a 100644 --- a/.github/workflows/deploy-docs.yaml +++ b/.github/workflows/deploy-docs.yaml @@ -35,24 +35,24 @@ jobs: PROJECT_ID: ${{ secrets.GKE_PROD_PROJECT }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - - uses: google-github-actions/auth@v2 + - uses: google-github-actions/auth@v3 if: needs.has-secrets.outputs.docs with: project_id: ${{ secrets.GKE_PROD_PROJECT }} workload_identity_provider: 'projects/429189597230/locations/global/workloadIdentityPools/github/providers/robusta-repos' # prod - name: Set up gcloud CLI - uses: google-github-actions/setup-gcloud@v2 + uses: google-github-actions/setup-gcloud@v3 if: needs.has-secrets.outputs.docs with: project_id: ${{ secrets.GKE_PROD_PROJECT }} - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 with: - python-version: 3.9 + python-version: 3.11 - name: Install dependencies run: | diff --git a/.github/workflows/new-contributors-autoreply.yaml b/.github/workflows/new-contributors-autoreply.yaml index 224624a0d..f4c966879 100644 --- a/.github/workflows/new-contributors-autoreply.yaml +++ b/.github/workflows/new-contributors-autoreply.yaml @@ -10,7 +10,7 @@ jobs: issues: write runs-on: ubuntu-latest steps: - - uses: actions/first-interaction@v1 + - uses: actions/first-interaction@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: "Hi 👋, thanks for opening an issue! Please note, it may take some time for us to respond, but we'll get back to you as soon as we can! \n\n- 💬 **Slack Community:** Join Robusta team and other contributors on Slack [here](https://bit.ly/robusta-slack).\n- 📖 **Docs:** Find our documentation [here](https://docs.robusta.dev/master/).\n- 🎥 **YouTube Channel:** Watch our videos [here](https://www.youtube.com/@RobustaDev)." diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index db0eee560..16f325738 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,18 +21,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get release version run: echo "$RELEASE_VER" - - uses: google-github-actions/auth@v2 + - uses: google-github-actions/auth@v3 with: project_id: ${{ secrets.GKE_PROD_PROJECT }} workload_identity_provider: 'projects/429189597230/locations/global/workloadIdentityPools/github/providers/robusta-repos' # prod - name: Set up gcloud CLI - uses: google-github-actions/setup-gcloud@v2 + uses: google-github-actions/setup-gcloud@v3 with: project_id: ${{ secrets.GKE_PROD_PROJECT }} @@ -73,7 +73,7 @@ jobs: fixed- - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -88,9 +88,9 @@ jobs: path: container-ids.json - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 with: - python-version: 3.9 + python-version: 3.11 - name: Install dependencies run: | diff --git a/.github/workflows/test_robusta.yaml b/.github/workflows/test_robusta.yaml index ab7eac09f..6244e55f8 100644 --- a/.github/workflows/test_robusta.yaml +++ b/.github/workflows/test_robusta.yaml @@ -7,23 +7,23 @@ jobs: name: Pre-commit checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 - uses: pre-commit/action@v3.0.1 run_tests: needs: check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 with: python-version: 3.11 # setup a KIND cluster for tests which need a kubernetes image - name: Create k8s Kind Cluster - uses: helm/kind-action@v1.2.0 + uses: helm/kind-action@v1.12.0 - name: Output KIND info run: | kubectl config get-contexts