diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index 09b135f5d4e59..b0fd9db673f24 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -230,7 +230,7 @@ jobs: release: name: "Release Binaries" runs-on: ubuntu-latest - needs: [macos-stable, linux-stable, windows-stable, macos-debug, linux-debug, windows-debug] + needs: [ macos-stable, linux-stable, windows-stable, macos-debug, linux-debug, windows-debug ] if: github.event_name != 'schedule' && github.repository_owner == 'seleniumhq' && (github.ref == 'refs/heads/trunk' || inputs.release == 'true') steps: - name: "Checkout selenium_manager_artifacts" @@ -257,7 +257,7 @@ jobs: git tag ${{ env.TAG_NAME }} git push && git push --tags - name: "Release" - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: token: ${{ secrets.SELENIUM_CI_TOKEN }} repository: SeleniumHQ/selenium_manager_artifacts diff --git a/.github/workflows/pin-browsers.yml b/.github/workflows/pin-browsers.yml index 20bf9b7699e63..1275d3e159946 100644 --- a/.github/workflows/pin-browsers.yml +++ b/.github/workflows/pin-browsers.yml @@ -36,7 +36,7 @@ jobs: fi - name: Create Pull Request if: env.CHANGES_FOUND == 'true' - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.SELENIUM_CI_TOKEN }} add-paths: common/repositories.bzl diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index e8687a26d725b..263f9fafec63f 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -68,7 +68,7 @@ jobs: fetch-tags: true ref: release-${{ github.event.inputs.version }} - name: Install Ruby - uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 + uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899 with: ruby-version: '3.1' - name: "Prep git" @@ -84,7 +84,7 @@ jobs: if: ${{ github.event.inputs.chrome_channel == 'stable' }} run: ./go "all:prepare[Stable]" - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.SELENIUM_CI_TOKEN }} author: Selenium CI Bot