Skip to content

Commit d85d512

Browse files
Merge pull request #282 from lob/PLAT-2193
PLAT-2193: update deprecated GitHub Actions
2 parents 1e10b19 + 4d5dc97 commit d85d512

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/forked_run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
matrix:
1313
node: ["20", "21"]
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Setup
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v4
1919
with:
2020
node-version: ${{ matrix.node }}
2121

.github/workflows/monitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
ref: "main"
1717

.github/workflows/npm_publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414
# Steps represent a sequence of tasks that will be executed as part of the job
1515
steps:
1616
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818

1919
# use node setup library (more info here https://github.com/actions/setup-node)
20-
- uses: actions/setup-node@v2
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 20
2323

2424
- name: Npm Install
2525
run: npm install
2626

2727
# publishes to NPM using third party tool (more info here https://github.com/JS-DevTools/npm-publish)
28-
- uses: JS-DevTools/npm-publish@v1
28+
- uses: JS-DevTools/npm-publish@v3
2929
with:
3030
token: ${{ secrets.NPM_TOKEN }}
3131
access: public

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 20
1515
- run: npm install
1616
- run: npm test
17-
- uses: JS-DevTools/npm-publish@v1
17+
- uses: JS-DevTools/npm-publish@v3
1818
with:
1919
token: ${{ secrets.NPM_TOKEN }}
2020
tag: latest

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
matrix:
1515
node: ["20", "21"]
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818

1919
- name: Setup
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node }}
2323

.github/workflows/verify_automation_health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
verify_authors:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717

1818
- name: Install Dependencies
1919
run: npm ci

0 commit comments

Comments
 (0)