Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ env:

jobs:
prepare:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
- uses: ./

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

conclusion:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [tests]
steps:
- uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- Pin workflows to the latest Ubuntu LTS version

## 1.5.0 - 20250-02-05

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ env:
jobs:
prepare:
name: Prepare
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
- uses: MasterworksIO/action-slacksync@1

lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: prepare

steps:
Expand All @@ -55,7 +55,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: prepare

steps:
Expand All @@ -65,7 +65,7 @@ jobs:

deploy:
name: Deploy
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build, lint]

steps:
Expand All @@ -77,7 +77,7 @@ jobs:

conclusion:
name: 'Conclusion'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [deploy]
if: always()
steps:
Expand Down