diff --git a/.github/workflows/_stale.yml b/.github/workflows/_stale.yml index 760d9d1..cd0223c 100644 --- a/.github/workflows/_stale.yml +++ b/.github/workflows/_stale.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ๐Ÿ“† mark stale activity - uses: actions/stale@v10 + uses: actions/stale@v11 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: ${{ inputs.days-until-stale }} diff --git a/.github/workflows/build-argo-agents.yml b/.github/workflows/build-argo-agents.yml index 672a166..ba738a3 100644 --- a/.github/workflows/build-argo-agents.yml +++ b/.github/workflows/build-argo-agents.yml @@ -43,10 +43,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v7 with: python-version: '3.13' @@ -63,7 +63,7 @@ jobs: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} - name: Upload generated code - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: generated-code-${{ matrix.service.name }} path: examples/${{ matrix.service.name }}/generate_code/ @@ -87,10 +87,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Download generated code - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: generated-code-${{ matrix.service.name }} path: examples/${{ matrix.service.name }}/generate_code/ @@ -144,7 +144,7 @@ jobs: - name: Upload Trivy scan results if: github.event_name != 'pull_request' - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4.37.4 with: sarif_file: 'trivy-results-${{ matrix.service.name }}-${{ matrix.variant }}.sarif' diff --git a/.github/workflows/bumpversion.yaml b/.github/workflows/bumpversion.yaml index 8410f91..bcb4175 100644 --- a/.github/workflows/bumpversion.yaml +++ b/.github/workflows/bumpversion.yaml @@ -12,7 +12,7 @@ jobs: name: "Bump version and create changelog with commitizen" steps: - name: Check out - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: fetch-depth: 0 - id: cz diff --git a/.github/workflows/conventional_commits.yml b/.github/workflows/conventional_commits.yml index d467af8..889609d 100644 --- a/.github/workflows/conventional_commits.yml +++ b/.github/workflows/conventional_commits.yml @@ -24,7 +24,7 @@ jobs: uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: egress-policy: audit - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: ๐Ÿงน Conventional Commits diff --git a/.github/workflows/publish-gh-pages.yml b/.github/workflows/publish-gh-pages.yml index 0809154..9f75a3d 100644 --- a/.github/workflows/publish-gh-pages.yml +++ b/.github/workflows/publish-gh-pages.yml @@ -35,9 +35,9 @@ jobs: with: egress-policy: audit - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Install Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 'lts/*' # Use the latest LTS version of Node.js - name: Install dependencies @@ -49,7 +49,7 @@ jobs: cd docs npm run build - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: docs/build @@ -63,4 +63,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index 0c89e94..2777489 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -24,11 +24,11 @@ jobs: uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: egress-policy: audit - - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.1.7 + - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.1.7 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.13.2" - name: Install UV diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml index a26cc71..4e6b71e 100644 --- a/.github/workflows/superlinter.yml +++ b/.github/workflows/superlinter.yml @@ -24,7 +24,7 @@ jobs: uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: egress-policy: audit - - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.1.7 + - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.1.7 with: fetch-depth: 0 - name: ๐Ÿงน run superlinter diff --git a/.github/workflows/unittest.yaml b/.github/workflows/unittest.yaml index 6c08d61..6f61b16 100644 --- a/.github/workflows/unittest.yaml +++ b/.github/workflows/unittest.yaml @@ -12,10 +12,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.13'