Skip to content

Commit

Permalink
fix: set all ubuntu ci versions to 24.04 to fix dependancy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AugmentedMode committed Oct 17, 2024
1 parent b42176d commit 8a4bfc1
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
create-release-pr:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
pull-requests: write
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
check-workflows:
name: Check workflows
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Download actionlint
Expand All @@ -25,7 +25,7 @@ jobs:

all-jobs-completed:
name: All jobs completed
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- check-workflows
- build-lint-test
Expand All @@ -39,7 +39,7 @@ jobs:
all-jobs-pass:
name: All jobs pass
if: ${{ always() }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: all-jobs-completed
steps:
- name: Check that all jobs have passed
Expand All @@ -59,7 +59,7 @@ jobs:
needs: all-jobs-pass
outputs:
IS_RELEASE: ${{ steps.is-release.outputs.IS_RELEASE }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: MetaMask/action-is-release@v1
id: is-release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-gh-pages-backport-2.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
publish-to-gh-pages:
name: Publish to GitHub Pages
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-gh-pages-backport-pre-2.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
publish-to-gh-pages:
name: Publish to GitHub Pages
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
publish-to-gh-pages:
name: Publish to GitHub Pages
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-rc-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
get-release-version:
name: Get release version
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
release-version: ${{ steps.release-name.outputs.RELEASE_VERSION }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
publish-release:
permissions:
contents: write
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -35,7 +35,7 @@ jobs:
key: ${{ github.sha }}

publish-npm-dry-run:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: publish-release
steps:
- uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:

publish-npm:
environment: npm-publish
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: publish-npm-dry-run
steps:
- uses: actions/checkout@v3
Expand All @@ -79,7 +79,7 @@ jobs:
SKIP_PREPACK: true

get-release-version:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: publish-npm
outputs:
RELEASE_VERSION: ${{ steps.get-release-version.outputs.RELEASE_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-code-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
run-security-scan:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down

0 comments on commit 8a4bfc1

Please sign in to comment.