Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TECH-76: #minor Upgrades to Erlang/OTP 27, bumps jesse #15

Merged
merged 4 commits into from
Jan 27, 2025
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
18 changes: 18 additions & 0 deletions .github/workflows/tag-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create Tag

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- uses: valitydev/action-tagger@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
with-v: true
16 changes: 8 additions & 8 deletions .github/workflows/test-erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
branches: [ '**' ]

env:
OTP_VERSION: "24.2.0"
REBAR_VERSION: "3.18"
OTP_VERSION: "27.1.2"
REBAR_VERSION: "3.24"
CODEGEN_VERSION: "2.4.25"
CODEGEN_NAME: "swagger-codegen-cli.jar"
ARTIFACT_NAME: "vality-erlang-codegen-swagger-codegen-1.0.0.jar"
Expand Down Expand Up @@ -39,13 +39,13 @@ jobs:
java -cp codegen-cli/${{ env.ARTIFACT_NAME }}:codegen-cli/${{ env.CODEGEN_NAME }} io.swagger.codegen.SwaggerCodegen generate -l vality-erlang-server -i ${{ env.SPEC_PATH }} -o erlang-server

- name: Upload server artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: erlang-server
path: erlang-server

- name: Upload client artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: erlang-client
path: erlang-client
Expand All @@ -55,12 +55,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download code artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: erlang-client

- name: Setup BEAM
uses: erlef/setup-beam@v1.15
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{ env.OTP_VERSION }}
rebar3-version: ${{ env.REBAR_VERSION }}
Expand All @@ -76,12 +76,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download code artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: erlang-server

- name: Setup BEAM
uses: erlef/setup-beam@v1.15
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{ env.OTP_VERSION }}
rebar3-version: ${{ env.REBAR_VERSION }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,10 @@
{hackney, "1.17.4"},
{jsx, "3.1.0"},
{parse_trans, "3.4.1"},
{jesse, {git, "https://github.com/valitydev/jesse.git", {tag, "uptag_1.6.1-1"}}}
{jesse, {git, "https://github.com/valitydev/jesse.git", {tag, "uptag_1.6.1-2"}}}
]}.

{project_plugins, [
{rebar3_proper, "0.12.1"},
{rebar3_lint, "3.2.6"}
]}.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@
{email_validator, "1.1.0"},
{jsx, "3.1.0"},
{parse_trans, "3.4.1"},
{jesse, {git, "https://github.com/valitydev/jesse.git", {tag, "uptag_1.6.1-1"}}}
{jesse, {git, "https://github.com/valitydev/jesse.git", {tag, "uptag_1.6.1-2"}}}
]}.

{project_plugins, [
{rebar3_proper, "0.12.1"},
{rebar3_lint, "3.2.6"}
]}.
Loading