Skip to content

Commit

Permalink
Merge pull request #114 from ExpediaGroup/feature/gh-actions-patch
Browse files Browse the repository at this point in the history
fix: upgrade gh actions runner
  • Loading branch information
RickArt committed Jun 28, 2023
2 parents db2fe10 + 4897e53 commit e2dca92
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
apiary-docker-image:
name: Apiary Docker Image Checks
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
apiary-docker-image:
name: Apiary Docker Release
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## [3.0.10] - 2023-06-28
### Added
- Added variable `LIMIT_PARTITION_REQUEST_NUMBER` to protect the cluster, this controls how many partitions can be scanned for each partitioned table. The default value "-1" means no limit. The limit on partitions does not affect metadata-only queries.
### Changed
- Upgraded github actions ubuntu runner to `22.04` (was `18.04`).
- Set `amazonlinux` version to `2` (was `latest`).
- Upgraded mvn version to `3.9.3`(was `3.6.3`).

## [3.0.9] - 2022-11-23
### Added
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2018 Expedia Inc.
# Licensed under the Apache License, Version 2.0 (the "License");

from amazonlinux:latest
from amazonlinux:2

ENV RANGER_VERSION 2.0.0
ENV APIARY_EXTENSIONS_VERSION 7.3.4
Expand Down Expand Up @@ -46,7 +46,7 @@ wget -q https://search.maven.org/remotecontent?filepath=com/kstruct/gethostname4
wget -q https://search.maven.org/remotecontent?filepath=com/sun/jna/jna/${JNA_VERSION}/jna-${JNA_VERSION}.jar -O jna-${JNA_VERSION}.jar && \
wget -q https://search.maven.org/remotecontent?filepath=io/prometheus/jmx/jmx_prometheus_javaagent/${EXPORTER_VERSION}/jmx_prometheus_javaagent-${EXPORTER_VERSION}.jar -O jmx_prometheus_javaagent-${EXPORTER_VERSION}.jar

ENV MAVEN_VERSION 3.6.3
ENV MAVEN_VERSION 3.9.3

RUN wget -q -O - https://dlcdn.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz | tar -C /opt -xzf - && \
ln -sf /opt/apache-maven-${MAVEN_VERSION}/bin/mvn /bin/mvn
Expand Down

0 comments on commit e2dca92

Please sign in to comment.