Skip to content

Commit

Permalink
ci: upgrade to run workflows on ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
marabesi committed Dec 19, 2024
1 parent 79118ec commit 7285375
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
send_docker_image_to_hub:
needs: [build, test]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: login to docker hub
Expand All @@ -34,7 +34,7 @@ jobs:
docker push ${{secrets.DOCKERHUB_USERNAME}}/smelly-test:latest
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set Environment Variables
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
path: ./vscode/*.vsix

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_ovsx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_vsce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 7285375

Please sign in to comment.