Skip to content

Commit 6e9c205

Browse files
committed
ci: update github actions versions
1 parent 4d63fc2 commit 6e9c205

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,20 @@ jobs:
2020
# os: [ubuntu-latest, macos-latest, windows-latest]
2121
runs-on: ${{ matrix.os }}
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v6.0.2
2424
- name: Setup NodeJS
25-
uses: actions/setup-node@v6
25+
uses: actions/setup-node@v6.4.0
2626
with:
2727
node-version: 24
2828
registry-url: 'https://registry.npmjs.org'
2929
cache: npm
3030
cache-dependency-path: './package.json'
31-
- run: npm ci
31+
- name: Install dependencies
32+
run: npm ci
3233
- name: Package
3334
run: npm run package
34-
- name: Run headless test
35-
uses: GabrielBB/xvfb-action@v1.0
35+
- name: Run headless tests
36+
uses: GabrielBB/xvfb-action@v1.7
3637
with:
3738
run: npm test
3839

@@ -44,12 +45,12 @@ jobs:
4445
release_body: ${{ steps.git-cliff.outputs.content }}
4546
steps:
4647
- name: Checkout
47-
uses: actions/checkout@v6
48+
uses: actions/checkout@v6.0.2
4849
with:
4950
fetch-depth: 0
5051

5152
- name: Generate a changelog
52-
uses: orhun/git-cliff-action@main
53+
uses: orhun/git-cliff-action@v4.8.0
5354
id: git-cliff
5455
with:
5556
config: github
@@ -59,6 +60,6 @@ jobs:
5960
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6061

6162
- name: Release
62-
uses: softprops/action-gh-release@v2.2.1
63+
uses: softprops/action-gh-release@v3.0.0
6364
with:
6465
body_path: CHANGES.md

0 commit comments

Comments
 (0)