From 1e9a53061f6c1f8b92dfb69709fe07fe6e569992 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 06:41:12 +0000 Subject: [PATCH] chore(deps): pin dependencies --- .github/workflows/publish.yaml | 2 +- .github/workflows/scan.yaml | 2 +- .github/workflows/ui-coverage.yml | 6 +++--- .github/workflows/ui.yaml | 16 ++++++++-------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 907722a6d..84e45b19f 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -75,7 +75,7 @@ jobs: - name: Checkout repository uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Golang setup - uses: actions/setup-go@v5 + uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5 with: go-version: '>=1.22.0' # install oci-factory via golang and set path in environment diff --git a/.github/workflows/scan.yaml b/.github/workflows/scan.yaml index 0eb0d7402..1e356d880 100644 --- a/.github/workflows/scan.yaml +++ b/.github/workflows/scan.yaml @@ -12,7 +12,7 @@ jobs: scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Scan image with Trivy uses: aquasecurity/trivy-action@master with: diff --git a/.github/workflows/ui-coverage.yml b/.github/workflows/ui-coverage.yml index 0078e6b87..8449ca3f1 100644 --- a/.github/workflows/ui-coverage.yml +++ b/.github/workflows/ui-coverage.yml @@ -12,15 +12,15 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4 with: github-token: ${{ secrets.GITHUB_TOKEN }} name: coverage run-id: ${{ github.event.workflow_run.id }} path: "./ui/coverage" - name: "Report Coverage" - uses: davelosert/vitest-coverage-report-action@v2 + uses: davelosert/vitest-coverage-report-action@5a78cb16e761204097ad8a39369ea5d0ff7c8a5d # v2 with: working-directory: "./ui" name: "UI Test Coverage" diff --git a/.github/workflows/ui.yaml b/.github/workflows/ui.yaml index ceb152164..6a83b06c3 100644 --- a/.github/workflows/ui.yaml +++ b/.github/workflows/ui.yaml @@ -18,9 +18,9 @@ jobs: matrix: node-version: [20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4 with: node-version: ${{ matrix.node-version }} cache: "yarn" @@ -37,9 +37,9 @@ jobs: matrix: node-version: [20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4 with: node-version: ${{ matrix.node-version }} cache: "yarn" @@ -48,7 +48,7 @@ jobs: run: yarn --cwd ui install --immutable - run: yarn --cwd ui test-js --coverage.enabled true - name: "Upload Coverage" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4 with: name: coverage path: ui/coverage @@ -59,9 +59,9 @@ jobs: matrix: node-version: [20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4 with: node-version: ${{ matrix.node-version }} cache: "yarn" @@ -72,7 +72,7 @@ jobs: dotrun: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Install dotrun run: sudo pip3 install dotrun requests==2.31.0 # requests version is pinned to avoid breaking changes, can be removed once issue is resolved: https://github.com/docker/docker-py/issues/3256 - name: Install dependencies