Skip to content

Commit

Permalink
Merge pull request #63 from miklosbagi/ubuntu-latest-to-version
Browse files Browse the repository at this point in the history
Change ubuntu-latest to a specific version
  • Loading branch information
miklosbagi authored Jan 26, 2025
2 parents 0f285c4 + 06c0b08 commit c895c30
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
tmate-debug:
if: ${{ github.event_name == 'workflow_dispatch' && github.actor == 'miklosbagi' && github.event.inputs.tmate_enabled == 'true' }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: mxschmitt/action-tmate@v3
Expand All @@ -35,7 +35,7 @@ jobs:

custom-gluetun-version-check:
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.custom_gluetun_version != '' }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Build env and run tests
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,55 +27,56 @@ env:

jobs:
lint-docker:
runs-on: ubuntu-latest
# https://github.com/actions/runner-images
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
lint-sh:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: ludeeus/[email protected]

pr-check-against-3-38:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Test against Gluetun v3.38
run: make GLUETUN_VERSION=v3.38 pr-test

pr-check-against-3-38-1:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Test against Gluetun v3.38.1
run: make GLUETUN_VERSION=v3.38.1 pr-test

pr-check-against-3-39:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Test against Gluetun v3.39
run: make GLUETUN_VERSION=v3.39 pr-test

pr-check-against-3-39-1:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Test against Gluetun v3.39.1
run: make GLUETUN_VERSION=v3.39.1 pr-test

pr-check-against-3-40-0:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Test against Gluetun v3.40.0
run: make GLUETUN_VERSION=v3.40.0 pr-test

pr-check-against-latest:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Test against Gluetun latest
Expand Down

0 comments on commit c895c30

Please sign in to comment.