diff --git a/.github/workflows/conventional_commits.yml b/.github/workflows/conventional_commits.yml index 1909a949..3b1957eb 100644 --- a/.github/workflows/conventional_commits.yml +++ b/.github/workflows/conventional_commits.yml @@ -27,7 +27,7 @@ jobs: uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3 with: egress-policy: audit - - uses: actions/checkout@v5.0.0 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: ๐Ÿงน Conventional Commits diff --git a/.github/workflows/dependency.yml b/.github/workflows/dependency.yml index 9327b2b3..26cc2f74 100644 --- a/.github/workflows/dependency.yml +++ b/.github/workflows/dependency.yml @@ -23,9 +23,9 @@ jobs: uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3 with: egress-policy: audit - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7 + - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.1.7 - name: ๐Ÿ”‚ dependency review - uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3 + uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2 with: fail-on-severity: "high" deny-licenses: "AGPL-1.0, AGPL-3.0" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7183d3cc..0ea24569 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: packages: read statuses: write steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7 + - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.1.7 with: fetch-depth: 0 - name: ๐Ÿงน run superlinter @@ -70,7 +70,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7 + - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.1.7 - name: Set up Helm uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v3 @@ -110,7 +110,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7 + - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.1.7 - name: Set up python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 6646cd3b..b3f9e43f 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -13,7 +13,7 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5.0.0 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 - uses: actions/setup-go@v6 - run: go install golang.org/x/lint/golint@latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 705245ba..612f896e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.2.0 + uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.2.0 with: fetch-depth: 0 persist-credentials: false @@ -90,7 +90,7 @@ jobs: contents: read steps: - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: pattern: wheel-linux-x86_64 merge-multiple: true diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml index 0e88a76a..19860402 100644 --- a/.github/workflows/reusable-docker.yml +++ b/.github/workflows/reusable-docker.yml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.2.0 + uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.2.0 with: fetch-depth: 0 persist-credentials: false diff --git a/.github/workflows/reusable-helm.yml b/.github/workflows/reusable-helm.yml index bfb95933..efcb2c8b 100644 --- a/.github/workflows/reusable-helm.yml +++ b/.github/workflows/reusable-helm.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: true @@ -43,7 +43,7 @@ jobs: version: v3.12.0 - name: Cache Helm dependencies - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 #v4.2.3 + uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 #v5.0.2 with: path: ~/.cache/helm key: ${{ runner.os }}-helm diff --git a/.github/workflows/reusable-python.yml b/.github/workflows/reusable-python.yml index 2b67c188..12b2a5f3 100644 --- a/.github/workflows/reusable-python.yml +++ b/.github/workflows/reusable-python.yml @@ -31,10 +31,10 @@ jobs: target: aarch64 steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Python id: setup-python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.12" - name: Install build dependencies @@ -46,7 +46,7 @@ jobs: python -m build --wheel --sdist python -m twine check dist/* - name: Upload wheel - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: wheel-${{ matrix.platform.os }}-${{ matrix.platform.target }} path: ./sdk/python/dist diff --git a/.github/workflows/reusable-test.yml b/.github/workflows/reusable-test.yml index 11e92ed0..7e1773f4 100644 --- a/.github/workflows/reusable-test.yml +++ b/.github/workflows/reusable-test.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6 - name: test run: | echo "Running all tests..."