diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 8a7ce4203..acf1684c6 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -18,7 +18,7 @@ jobs: NODE_OPTIONS: --max-old-space-size=4096 steps: - name: Checkout code - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 with: fetch-depth: 0 @@ -40,7 +40,7 @@ jobs: - name: Run Chromatic if: env.CHROMATIC_PROJECT_TOKEN - uses: chromaui/action@1db61b73b7919508ee8e62336f04bd0aed6da756 # v17 + uses: chromaui/action@7804f34e4e59c0d9b3c856848f46ad96d7897429 # v17 with: projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} onlyChanged: true # 👈 Required option to enable TurboSnap diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83e796e1b..03509569b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Install Dependencies runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' @@ -34,7 +34,7 @@ jobs: needs: install runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' @@ -52,7 +52,7 @@ jobs: needs: install runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' @@ -89,12 +89,12 @@ jobs: steps: - name: Checkout for Dependabot PR if: ${{ startsWith(github.head_ref || '', 'dependabot/') }} - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 with: ref: ${{ github.head_ref }} - name: Checkout for others if: ${{ !startsWith(github.head_ref || '', 'dependabot/') }} - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' @@ -144,7 +144,7 @@ jobs: needs: install runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' @@ -180,7 +180,7 @@ jobs: needs: install runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' @@ -224,7 +224,7 @@ jobs: needs: build runs-on: ${{ matrix.platform == 'amd64' && 'ubuntu-latest' || 'ubuntu-arm64' }} steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Restore build cache uses: actions/cache/restore@v5.0.5 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84d6b3913..fcc2bcf49 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,7 +84,7 @@ jobs: VERSION: ${{ needs.get-version.outputs.version }} RELEASE_DC_FILENAME: openops-dc-${{ needs.get-version.outputs.version }}.zip steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Create a release file run: | cp THIRD_PARTY_LICENSES.txt LICENSE NOTICE deploy/docker-compose @@ -94,7 +94,7 @@ jobs: - name: Create a GitHub release id: create-github-release if: inputs.github_release - uses: softprops/action-gh-release@v3.0.0 + uses: softprops/action-gh-release@v3.0.1 with: target_commitish: ${{ github.sha }} tag_name: ${{ env.VERSION }}