Skip to content

Commit c388468

Browse files
authored
Pin workflows to the latest Ubuntu LTS version (#30)
1 parent 2718b37 commit c388468

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ env:
77

88
jobs:
99
prepare:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@v1
1313
- uses: ./
1414

1515
tests:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
needs: [prepare]
1818
steps:
1919
- uses: actions/checkout@v1
@@ -22,7 +22,7 @@ jobs:
2222
- run: export INPUT_GITHUB_TOKEN='${{ secrets.GITHUB_TOKEN }}' npm run test
2323

2424
conclusion:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-24.04
2626
needs: [tests]
2727
steps:
2828
- uses: actions/checkout@v1

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Unreleased
44

5+
- Pin workflows to the latest Ubuntu LTS version
56

67
## 1.5.0 - 20250-02-05
78

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ env:
3636
jobs:
3737
prepare:
3838
name: Prepare
39-
runs-on: ubuntu-20.04
39+
runs-on: ubuntu-24.04
4040

4141
steps:
4242
- uses: actions/checkout@v2
4343
- uses: MasterworksIO/action-slacksync@1
4444

4545
lint:
4646
name: Lint
47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-24.04
4848
needs: prepare
4949

5050
steps:
@@ -55,7 +55,7 @@ jobs:
5555

5656
build:
5757
name: Build
58-
runs-on: ubuntu-20.04
58+
runs-on: ubuntu-24.04
5959
needs: prepare
6060

6161
steps:
@@ -65,7 +65,7 @@ jobs:
6565

6666
deploy:
6767
name: Deploy
68-
runs-on: ubuntu-20.04
68+
runs-on: ubuntu-24.04
6969
needs: [build, lint]
7070

7171
steps:
@@ -77,7 +77,7 @@ jobs:
7777

7878
conclusion:
7979
name: 'Conclusion'
80-
runs-on: ubuntu-20.04
80+
runs-on: ubuntu-24.04
8181
needs: [deploy]
8282
if: always()
8383
steps:

0 commit comments

Comments
 (0)