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

Fix GitHub Actions Workflows #40

Merged
merged 1 commit into from
Oct 16, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
unit-test:
runs-on: ubuntu-latest
container:
image: circleci/clojure:openjdk-11-tools-deps-1.10.1.502
image: cimg/clojure:1.11.1
options: -u 1001:115

steps:
Expand All @@ -33,7 +33,7 @@ jobs:
integration-test:
runs-on: ubuntu-latest
container:
image: circleci/clojure:openjdk-11-tools-deps-1.10.1.502
image: cimg/clojure:1.11.1
env:
VESSEL_TEST_REGISTRY: registry
options: -u 1001:115
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- Fix GitHub Actions Workflows: [#40](https://github.com/nubank/vessel/pull/40).
- Handle reader macros when merging EDN files [#39](https://github.com/nubank/vessel/pull/39).

## [0.2.154] - 2024-02-15

- Fix the logic in the function that checks if a file ends with `.edn`: [#36](https://github.com/nubank/vessel/pull/36).
Expand All @@ -15,7 +20,7 @@ All notable changes to this project will be documented in this file.
### Added

- Add option to define options for the Clojure compiler when building and containerizing an application: [#32](https://github.com/nubank/vessel/pull/32).
See the [Clojure documentation](https://clojure.org/reference/compilation#_compiler_options) for more details.
See the [Clojure documentation](https://clojure.org/reference/compilation#_compiler_options) for more details.

## [0.2.148] - 2023-09-04

Expand Down