diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 5694c8c..f10cd57 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -24,11 +24,11 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI - uses: codacy/codacy-analysis-cli-action@4.0.0 + uses: codacy/codacy-analysis-cli-action@4.0.2 with: # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository # You can also omit the token and run the tools that support default configurations diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index a98dd47..26b1e23 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3.0.0 - name: Get branch names id: branch-name @@ -25,7 +25,7 @@ jobs: uses: docker/setup-buildx-action@v1.6.0 - name: Login to GitHub Container Registry - uses: docker/login-action@v1.13.0 + uses: docker/login-action@v1.14.1 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index c1746c7..602aff3 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -8,7 +8,7 @@ jobs: if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.0 with: token: ${{ secrets.PAT_TOKEN }} fetch-depth: 0 # otherwise, you will failed to push refs to dest repo diff --git a/.github/workflows/sync-release-version.yml b/.github/workflows/sync-release-version.yml index e15df3b..d8b7a06 100644 --- a/.github/workflows/sync-release-version.yml +++ b/.github/workflows/sync-release-version.yml @@ -8,7 +8,7 @@ jobs: update-version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.0 with: fetch-depth: 0 - name: Sync release version. @@ -19,11 +19,11 @@ jobs: paths: | README.md - name: Generate CHANGELOG - uses: tj-actions/github-changelog-generator@v1.11 + uses: tj-actions/github-changelog-generator@v1.12 with: output: 'HISTORY.md' - name: Create Pull Request - uses: peter-evans/create-pull-request@v3.12.1 + uses: peter-evans/create-pull-request@v3.14.0 with: base: "main" title: "Upgraded to ${{ steps.sync-release-version.outputs.new_version }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 85b41d5..f25a63e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: name: Test github-changelog-generator steps: - name: Checkout - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3.0.0 - name: shellcheck uses: reviewdog/action-shellcheck@v1.14 - name: Run github-changelog-generator diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml index d9647b6..ba9aef3 100644 --- a/.github/workflows/update-readme.yml +++ b/.github/workflows/update-readme.yml @@ -9,7 +9,7 @@ jobs: sync-assets: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.0 with: fetch-depth: 0 @@ -17,7 +17,7 @@ jobs: uses: tj-actions/remark@v2.3 - name: Verify Changed files - uses: tj-actions/verify-changed-files@v8 + uses: tj-actions/verify-changed-files@v9 id: verify_changed_files with: files: | diff --git a/Dockerfile b/Dockerfile index f816d8e..880fff7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,14 @@ FROM ruby:3.0.3-alpine3.13 LABEL maintainer="Tonye Jack " -RUN apk add bash git +RUN apk add bash COPY Gemfile* ./ RUN apk add --no-cache \ --virtual .gem-installdeps \ build-base \ - && gem install bundler --version 2.2.16 \ + && gem install bundler --version 2.3.9 \ && bundle config set --local system 'true' \ && bundle install \ && gem uninstall bundler \ diff --git a/Gemfile b/Gemfile index dbf2ec7..89ed92f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,5 @@ +source 'https://rubygems.org' + source 'https://rubygems.org' do gem 'github_changelog_generator', '1.16.4' end diff --git a/Gemfile.lock b/Gemfile.lock index 5c437be..44aea21 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,12 +4,11 @@ GEM GEM remote: https://rubygems.org/ specs: - activesupport (6.1.4.6) + activesupport (7.0.2.3) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - zeitwerk (~> 2.3) addressable (2.8.0) public_suffix (>= 2.0.2, < 5.0) async (1.30.1) @@ -26,7 +25,7 @@ GEM async-http-faraday (0.11.0) async-http (~> 0.42) faraday - async-io (1.32.2) + async-io (1.33.0) async async-pool (0.3.9) async (>= 1.25) @@ -94,13 +93,13 @@ GEM timers (4.3.3) tzinfo (2.0.4) concurrent-ruby (~> 1.0) - zeitwerk (2.5.4) PLATFORMS universal-darwin-21 + x86_64-linux DEPENDENCIES github_changelog_generator (= 1.16.4)! BUNDLED WITH - 2.3.8 + 2.3.9 diff --git a/HISTORY.md b/HISTORY.md index de3a472..92bacfe 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,25 @@ # Changelog +## [v1.12](https://github.com/tj-actions/github-changelog-generator/tree/v1.12) (2022-02-26) + +[Full Changelog](https://github.com/tj-actions/github-changelog-generator/compare/v1.11...v1.12) + +**Merged pull requests:** + +- Added Gemfile.lock [\#100](https://github.com/tj-actions/github-changelog-generator/pull/100) ([jackton1](https://github.com/jackton1)) +- Update docker/login-action action to v1.13.0 [\#99](https://github.com/tj-actions/github-changelog-generator/pull/99) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/sync-release-version action to v11 [\#98](https://github.com/tj-actions/github-changelog-generator/pull/98) ([renovate[bot]](https://github.com/apps/renovate)) +- Updated README.md [\#97](https://github.com/tj-actions/github-changelog-generator/pull/97) ([jackton1](https://github.com/jackton1)) +- Update reviewdog/action-shellcheck action to v1.14 [\#96](https://github.com/tj-actions/github-changelog-generator/pull/96) ([renovate[bot]](https://github.com/apps/renovate)) +- Update docker/build-push-action action to v2.9.0 [\#95](https://github.com/tj-actions/github-changelog-generator/pull/95) ([renovate[bot]](https://github.com/apps/renovate)) +- Update peter-evans/create-pull-request action to v3.12.1 [\#94](https://github.com/tj-actions/github-changelog-generator/pull/94) ([renovate[bot]](https://github.com/apps/renovate)) +- Update docker/build-push-action action to v2.8.0 [\#93](https://github.com/tj-actions/github-changelog-generator/pull/93) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/remark action to v2.3 [\#92](https://github.com/tj-actions/github-changelog-generator/pull/92) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/remark action to v2.2 [\#91](https://github.com/tj-actions/github-changelog-generator/pull/91) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/remark action to v2 [\#90](https://github.com/tj-actions/github-changelog-generator/pull/90) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/github-changelog-generator action to v1.11 [\#89](https://github.com/tj-actions/github-changelog-generator/pull/89) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgraded to v1.11 [\#86](https://github.com/tj-actions/github-changelog-generator/pull/86) ([jackton1](https://github.com/jackton1)) + ## [v1.11](https://github.com/tj-actions/github-changelog-generator/tree/v1.11) (2022-01-03) [Full Changelog](https://github.com/tj-actions/github-changelog-generator/compare/v1.10...v1.11) diff --git a/README.md b/README.md index 5eb053e..f602504 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Generate CHANGELOG/HISTORY markdown files for your project steps: - uses: actions/checkout@v2 - name: Generate CHANGELOG - uses: tj-actions/github-changelog-generator@v1.11 + uses: tj-actions/github-changelog-generator@v1.12 with: output: 'HISTORY.md' ```