From f04edc14e2d0f0e5dbaaa701a1b81c7598973fd9 Mon Sep 17 00:00:00 2001 From: Brian Chen Date: Mon, 12 May 2025 16:31:09 -0400 Subject: [PATCH] update github actions to commits --- .github/dependabot.yml | 4 ++++ .github/workflows/api_update_reminder.yml | 4 ++-- .github/workflows/api_update_reminder_on_release.yml | 4 ++-- .github/workflows/build.yml | 4 ++-- .github/workflows/close-waiting-for-response-issues.yml | 2 +- .github/workflows/remove-labels-on-activity.yml | 5 ++--- 6 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6d05fb957..95a71ca06 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,10 @@ registries: username: ${{secrets.DEPENDENCIES_GITHUB_USER}} password: ${{secrets.DEPENDENCIES_GITHUB_TOKEN}} updates: + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly - package-ecosystem: bundler directory: "/" schedule: diff --git a/.github/workflows/api_update_reminder.yml b/.github/workflows/api_update_reminder.yml index b4cfb4561..227263808 100644 --- a/.github/workflows/api_update_reminder.yml +++ b/.github/workflows/api_update_reminder.yml @@ -8,8 +8,8 @@ jobs: reminder: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: JasonEtco/create-an-issue@v2.4.0 + - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 + - uses: JasonEtco/create-an-issue@e6b4b190af80961b6462c725454e7828d0247a68 # v2.4.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/api_update_reminder_on_release.yml b/.github/workflows/api_update_reminder_on_release.yml index 5e3053f95..f82510a7a 100644 --- a/.github/workflows/api_update_reminder_on_release.yml +++ b/.github/workflows/api_update_reminder_on_release.yml @@ -8,8 +8,8 @@ jobs: reminder: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: JasonEtco/create-an-issue@v2.4.0 + - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 + - uses: JasonEtco/create-an-issue@e6b4b190af80961b6462c725454e7828d0247a68 # v2.4.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c12731bd..557bdfc8b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,9 +16,9 @@ jobs: - 3.2 - 3.3 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 - name: Set up Ruby ${{ matrix.version }} - uses: ruby/setup-ruby@v1 + uses: ruby/setup-ruby@e34163cd15f4bb403dcd72d98e295997e6a55798 # v1.238.0 with: ruby-version: ${{ matrix.version }} - name: Install OpenSSL diff --git a/.github/workflows/close-waiting-for-response-issues.yml b/.github/workflows/close-waiting-for-response-issues.yml index e0a787efe..5b527f12d 100644 --- a/.github/workflows/close-waiting-for-response-issues.yml +++ b/.github/workflows/close-waiting-for-response-issues.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: close-issues - uses: actions-cool/issues-helper@v3 + uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3.6.0 with: actions: 'close-issues' token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/remove-labels-on-activity.yml b/.github/workflows/remove-labels-on-activity.yml index 48872e95a..eb451b834 100644 --- a/.github/workflows/remove-labels-on-activity.yml +++ b/.github/workflows/remove-labels-on-activity.yml @@ -7,10 +7,9 @@ jobs: remove-labels-on-activity: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions-ecosystem/action-remove-labels@v1 + - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 + - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.2.0 if: contains(github.event.issue.labels.*.name, 'Waiting for Response') with: labels: | Waiting for Response -