Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
uses: github/codeql-action/init@v4.35.2
with:
config-file: ./.github/codeql/codeql-config-${{ matrix.language }}.yml
languages: ${{ matrix.language }}

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v4
uses: github/codeql-action/autobuild@v4.35.2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -66,4 +66,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
uses: github/codeql-action/analyze@v4.35.2
2 changes: 1 addition & 1 deletion .github/workflows/conventional-commit-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
permissions:
pull-requests: read
steps:
- uses: amannn/action-semantic-pull-request@v6
- uses: amannn/action-semantic-pull-request@v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
token: ${{ secrets.DEVEX_BOT_TOKEN }}

- name: Setup node 24
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: 24.11.1

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
release-please-release:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v3.7.13
id: release
with:
package-name: ${{env.ACTION_NAME}}
release-type: node
token: ${{ github.token }}
command: github-release
- uses: actions/checkout@v3
- uses: actions/checkout@v3.6.0
- name: Tag major and minor versions
if: ${{ steps.release.outputs.release_created }}
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
- release-please-release
steps:
- id: release-pr
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v3.7.13
with:
token: ${{ secrets.DEVEX_BOT_TOKEN }}
release-type: node
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
server_tasks: ${{ steps.self_test.outputs.server_tasks }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Setup node 24
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: 24.11.1

Expand All @@ -66,7 +66,7 @@ jobs:
run: npm run all

- name: Test Report
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v1.9.1
if: success() || failure()
with:
name: JEST Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Self-hosted Renovate
uses: renovatebot/github-action@f9c81dddc9b589e4e6ae0326d1e36f6bc415d230 # v39.2.4
Expand Down
Loading