Skip to content

Commit 783ef46

Browse files
committed
ci: update deprecated GitHub Actions runners
ci: update GitHub Actions runners from ubuntu-20.04 to ubuntu-latest
1 parent a04c37b commit 783ef46

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/bump-version-on-merge-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# If pull request was merged then we should check for a package version update
1818
check-for-no-version-changing:
1919
if: github.event.pull_request.merged == true
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-latest
2121
permissions:
2222
actions: write
2323
steps:

.github/workflows/create-a-release-draft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# If pull request was merged then we should check for a package version update
1818
check-version-changing:
1919
if: github.event.pull_request.merged == true
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-latest
2121
permissions:
2222
actions: write
2323
steps:

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
matrix:
99
browser: [firefox, chrome, edge]
1010

11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/setup-node@v3
1414
with:

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request]
55
jobs:
66
lint:
77
name: ESlint
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
1111

.github/workflows/publish-package-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
publish:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
# Checkout to target branch
1313
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)