diff --git a/.github/actions/resolve-versions/action.yml b/.github/actions/resolve-versions/action.yml index 9136254..d400502 100644 --- a/.github/actions/resolve-versions/action.yml +++ b/.github/actions/resolve-versions/action.yml @@ -25,7 +25,7 @@ runs: # https://github.com/marketplace/actions/github-script - name: Resolve the current version from the manifest file. id: current-version - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ inputs.github-token }} result-encoding: string @@ -47,7 +47,7 @@ runs: # https://github.com/marketplace/actions/github-script - name: Get current version and create new version id: new-version - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 env: CURRENT_VERSION: ${{ steps.current-version.outputs.result }} with: diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index f5274ff..c70bd2c 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -14,7 +14,7 @@ jobs: steps: # https://github.com/marketplace/actions/create-github-app-token - name: Create GitHub App Token - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2 + uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 id: app-token with: app-id: ${{ vars.BOT_APP_ID }} diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 3b29fde..b137e32 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -22,10 +22,10 @@ jobs: steps: # https://github.com/marketplace/actions/checkout - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 # https://github.com/marketplace/actions/actionlint-with-reviewdog - - uses: reviewdog/action-actionlint@a5524e1c19e62881d79c1f1b9b6f09f16356e281 # v1.65.2 + - uses: reviewdog/action-actionlint@83e4ed25b168066ad8f62f5afbb29ebd8641d982 # v1.69.1 with: fail_on_error: true filter_mode: nofilter diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index 1533fff..e0fe888 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -18,7 +18,7 @@ jobs: steps: # https://github.com/marketplace/actions/checkout - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 # https://github.com/marketplace/actions/github-labeler - name: Run Labeler diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index 149c3e8..7ff1e4c 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -31,11 +31,11 @@ jobs: steps: # https://github.com/marketplace/actions/checkout - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 # https://github.com/marketplace/actions/create-github-app-token - name: Create GitHub App Token - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2 + uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 id: app-token with: app-id: ${{ vars.BOT_APP_ID }} @@ -50,7 +50,7 @@ jobs: # https://github.com/marketplace/actions/github-script - name: Generate release notes id: generate_notes - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ steps.app-token.outputs.token }} result-encoding: string @@ -65,7 +65,7 @@ jobs: # https://github.com/marketplace/actions/github-script - name: Existing branch id: existing-branch - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ steps.app-token.outputs.token }} result-encoding: json @@ -87,7 +87,7 @@ jobs: - name: Create pull request if: ${{ steps.existing-branch.outputs.result == 'null' }} id: create_pr - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ steps.app-token.outputs.token }} script: | @@ -151,7 +151,7 @@ jobs: - name: Update pull request if: ${{ steps.existing-branch.outputs.result != 'null' }} id: update-pr - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ steps.app-token.outputs.token }} script: | @@ -230,11 +230,11 @@ jobs: steps: # https://github.com/marketplace/actions/checkout - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 # https://github.com/marketplace/actions/create-github-app-token - name: Create GitHub App Token - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2 + uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 id: app-token with: app-id: ${{ vars.BOT_APP_ID }} @@ -249,7 +249,7 @@ jobs: # https://github.com/marketplace/actions/github-script - name: Create release id: create-release - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ steps.app-token.outputs.token }} result-encoding: string @@ -265,7 +265,7 @@ jobs: # https://github.com/marketplace/actions/github-script - name: Comment on PR - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ steps.app-token.outputs.token }} script: | diff --git a/.github/workflows/wc-changed.yml b/.github/workflows/wc-changed.yml index 03238ee..b96d7eb 100644 --- a/.github/workflows/wc-changed.yml +++ b/.github/workflows/wc-changed.yml @@ -21,7 +21,7 @@ jobs: steps: # https://github.com/marketplace/actions/checkout - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 # https://github.com/marketplace/actions/paths-changes-filter - name: Paths Changes Filter diff --git a/.github/workflows/wc-deploy-cloudflare-pages.yml b/.github/workflows/wc-deploy-cloudflare-pages.yml index da9b97b..0086466 100644 --- a/.github/workflows/wc-deploy-cloudflare-pages.yml +++ b/.github/workflows/wc-deploy-cloudflare-pages.yml @@ -34,11 +34,11 @@ jobs: steps: # https://github.com/marketplace/actions/checkout - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 # https://github.com/marketplace/actions/mise-action - name: mise action - uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 + uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac # v2.4.4 - name: Install deps run: bun install --frozen-lockfile @@ -48,7 +48,7 @@ jobs: # https://github.com/marketplace/actions/create-github-app-token - name: Create GitHub App Token - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2 + uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 id: app-token with: app-id: ${{ inputs.gh-app-id }}