Skip to content

Commit

Permalink
ubuntu-latest deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
bryannaegele committed Dec 2, 2024
1 parent c7d09e0 commit aa6e5c2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/elixir-test-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"otp_version": ["26.2.5.3", "25.3.2.14"],
"elixir_version": ["1.16.3", "1.15.8"],
"rebar3_version": ["3.24.0"],
"os": ["ubuntu-22.04"],
"os": ["ubuntu-24.04"],
"include": [
{
"elixir_version": "1.17.3",
Expand Down
2 changes: 1 addition & 1 deletion .github/erlang-test-matrix.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"otp_version": ["27.1", "26.2.5.3", "25.3.2.14"],
"rebar3_version": ["3.24.0"],
"os": ["ubuntu-22.04"]
"os": ["ubuntu-24.04"]
}
8 changes: 4 additions & 4 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
test-matrix:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
matrix: ${{ fromJson(needs.test-matrix.outputs.matrix) }}
services:
postgres:
image: circleci/postgres:13.5-ram
image: postgres:16
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
matrix: ${{ fromJson(needs.test-matrix.outputs.matrix) }}
services:
postgres:
image: circleci/postgres:13.5-ram
image: postgres:16
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
matrix: ${{ fromJson(needs.test-matrix.outputs.matrix) }}
services:
postgres:
image: circleci/postgres:13.5-ram
image: postgres:16
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
test-matrix:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on: [pull_request_target]

jobs:
triage:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
6 changes: 3 additions & 3 deletions .github/workflows/publish-mix-hex-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ on:

jobs:
config:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
authorized_users: ${{ steps.set-config.outputs.authorized_users }}
build_tool: ${{ steps.set-config.outputs.build_tool }}
Expand Down Expand Up @@ -94,13 +94,13 @@ jobs:
authorized_publisher:
needs: config
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- run: ${{ contains(fromJson(needs.config.outputs.authorized_users), github.actor) }}

publish:
needs: [authorized_publisher, config]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

permissions:
# write permission is required to create a github release
Expand Down

0 comments on commit aa6e5c2

Please sign in to comment.