Skip to content

Commit e6a3288

Browse files
committed
chore: pin actions to major version where available
1 parent 8ba6977 commit e6a3288

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
timeout-minutes: 5
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v7.0.0
12+
uses: actions/checkout@v7
1313
with:
1414
fetch-depth: 0
1515
- name: Set up node
16-
uses: actions/setup-node@v6.4.0
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version-file: .nvmrc
1919
cache: npm
@@ -33,9 +33,9 @@ jobs:
3333
timeout-minutes: 5
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v7.0.0
36+
uses: actions/checkout@v7
3737
- name: Set up node
38-
uses: actions/setup-node@v6.4.0
38+
uses: actions/setup-node@v6
3939
with:
4040
node-version-file: .nvmrc
4141
cache: npm
@@ -46,7 +46,7 @@ jobs:
4646
- name: Run tests (integration)
4747
run: npm run test:integration
4848
- name: Report coverage
49-
uses: coverallsapp/github-action@v2.3.7
49+
uses: coverallsapp/github-action@v2
5050
with:
5151
github-token: ${{github.token}}
5252
build:
@@ -55,9 +55,9 @@ jobs:
5555
timeout-minutes: 5
5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v7.0.0
58+
uses: actions/checkout@v7
5959
- name: Set up node
60-
uses: actions/setup-node@v6.4.0
60+
uses: actions/setup-node@v6
6161
with:
6262
node-version-file: .nvmrc
6363
cache: npm

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
timeout-minutes: 5
2424
steps:
2525
- name: Apply labels
26-
uses: actions/labeler@v6.1.0
26+
uses: actions/labeler@v6

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
id-token: write
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v7.0.0
25+
uses: actions/checkout@v7
2626
with:
2727
persist-credentials: false
2828
- name: Set up node
29-
uses: actions/setup-node@v6.4.0
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version-file: .nvmrc
3232
cache: npm
@@ -36,7 +36,7 @@ jobs:
3636
run: npm run build
3737
- name: Generate app token
3838
id: app-token
39-
uses: actions/create-github-app-token@v3.2.0
39+
uses: actions/create-github-app-token@v3
4040
with:
4141
client-id: ${{secrets.GH_APP_CLIENT_ID}}
4242
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}

.github/workflows/update-license.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
REGEX: ^(Copyright \(c\) )[0-9]{4}( Devon Powell)$
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v7.0.0
21+
uses: actions/checkout@v7
2222
- name: Determine info
2323
shell: bash
2424
id: info
@@ -36,7 +36,7 @@ jobs:
3636
LICENSE_YEAR: ${{steps.info.outputs.license-year}}
3737
- name: Generate app token
3838
id: app-token
39-
uses: actions/create-github-app-token@v3.2.0
39+
uses: actions/create-github-app-token@v3
4040
with:
4141
client-id: ${{secrets.GH_APP_CLIENT_ID}}
4242
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}
@@ -54,7 +54,7 @@ jobs:
5454
GH_APP_SLUG: ${{steps.app-token.outputs.app-slug}}
5555
GH_TOKEN: ${{steps.app-token.outputs.token}}
5656
- name: Handle changes
57-
uses: peter-evans/create-pull-request@v8.1.1
57+
uses: peter-evans/create-pull-request@v8
5858
id: changes
5959
with:
6060
token: ${{steps.app-token.outputs.token}}

.github/workflows/update-node.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 5
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v7.0.0
19+
uses: actions/checkout@v7
2020
- name: Determine info
2121
shell: bash
2222
id: info
@@ -42,7 +42,7 @@ jobs:
4242
NODE_VERSION: ${{steps.info.outputs.version}}
4343
- name: Generate app token
4444
id: app-token
45-
uses: actions/create-github-app-token@v3.2.0
45+
uses: actions/create-github-app-token@v3
4646
with:
4747
client-id: ${{secrets.GH_APP_CLIENT_ID}}
4848
private-key: ${{secrets.GH_APP_PRIVATE_KEY}}
@@ -60,7 +60,7 @@ jobs:
6060
GH_APP_SLUG: ${{steps.app-token.outputs.app-slug}}
6161
GH_TOKEN: ${{steps.app-token.outputs.token}}
6262
- name: Handle changes
63-
uses: peter-evans/create-pull-request@v8.1.1
63+
uses: peter-evans/create-pull-request@v8
6464
id: changes
6565
with:
6666
token: ${{steps.app-token.outputs.token}}

0 commit comments

Comments
 (0)