Skip to content

Commit

Permalink
update checkout action and add 2.0.0 to change log to release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahlukus committed Jun 12, 2024
1 parent cc1a8f1 commit 096d08e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Image
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/login-action@v2
with:
registry: ghcr.io
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-20.04
needs: image
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: devcontainers/ci@v0.2
env:
DOCKER_LOGIN_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-20.04
needs: image
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: devcontainers/ci@v0.2
env:
DOCKER_LOGIN_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -60,10 +60,10 @@ jobs:
runs-on: ubuntu-20.04
needs: [debian, amzn]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: CHANGELOG Entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2.0.0
uses: mindsers/changelog-reader-action@v2
with:
validation_level: warn
version: ${{ github.event.inputs.version }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Image
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/login-action@v2
with:
registry: ghcr.io
Expand All @@ -23,7 +23,7 @@ jobs:
needs: image
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test
uses: devcontainers/ci@v0.2
with:
Expand All @@ -38,7 +38,7 @@ jobs:
needs: image
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test
uses: devcontainers/ci@v0.2
with:
Expand All @@ -53,7 +53,7 @@ jobs:
needs: image
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test
uses: devcontainers/ci@v0.2
with:
Expand All @@ -68,7 +68,7 @@ jobs:
needs: image
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test
uses: devcontainers/ci@v0.2
with:
Expand All @@ -83,7 +83,7 @@ jobs:
needs: image
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test
uses: devcontainers/ci@v0.2
with:
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.1.1] [1.1.2] - 2023-05-20
## [2.0.0] - 2024-6-12

- Fail if parameter not found.

## [1.1.2] - 2023-05-20

- Simple major version docker tags. Ex: 1

Expand Down Expand Up @@ -38,4 +42,4 @@ Schedule release. No changes.

- Use `x-crypteia-ssm:` - Single path for a single environment variable.
- Use `x-crypteia-ssm-path:` - Path prefix to fetch many environment variables.
- Binary & Shared Object files for both Debian/Ubuntu/Etc & Amazon Linux 2
- Binary & Shared Object files for both Debian/Ubuntu/Etc & Amazon Linux 2

0 comments on commit 096d08e

Please sign in to comment.