From 4f93da2fa425135d01e4812d62fdd07ca7ccaae7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 00:28:03 -0700 Subject: [PATCH 01/13] Bump actions/checkout from 3 to 4 (#43) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/sync-labels.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 70085bd..9134495 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download JSON schema for labels configuration file id: download-schema @@ -106,7 +106,7 @@ jobs: echo "::set-output name=flag::--dry-run" - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download configuration files artifact uses: actions/download-artifact@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3dd5df2..6b497da 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Node.js 16.x uses: actions/setup-node@v3 @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Node.js 16.x uses: actions/setup-node@v3 From cb1819a35735980a2da43a35e7fb516a0bbab7dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 00:32:13 -0700 Subject: [PATCH 02/13] Bump actions/setup-node from 3 to 4 (#45) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6b497da..43c1500 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v4 - name: Set Node.js 16.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16.x @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Set Node.js 16.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16.x From 8855f61234f02cbc4547681fc66ddf0bad670f2b Mon Sep 17 00:00:00 2001 From: MatteoPologruto Date: Wed, 17 May 2023 09:33:50 +0200 Subject: [PATCH 03/13] Reformat commands in contributor guide The commands were prefixed by "#", evidently to indicate a command prompt. But that is the shell comment syntax, so it is very unintuitive. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3c52b5b..da61ce6 100644 --- a/README.md +++ b/README.md @@ -77,14 +77,14 @@ The action accepts some properties: To work on the codebase you have to install all the dependencies: -```sh -# npm install +``` +npm install ``` To run tests: -```sh -# npm run test +``` +npm run test ``` See the [official Github documentation][pat-docs] to know more about Personal Access Tokens. From 6ecbca8d5cab382e855410b9d6e55c9f4167c4de Mon Sep 17 00:00:00 2001 From: MatteoPologruto Date: Wed, 17 May 2023 09:38:15 +0200 Subject: [PATCH 04/13] Use ordered list for development section of contributor guide The development process for contributors follows a reasonably linear set of distinct steps, so this is an appropriate way of organizing the information. --- README.md | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da61ce6..25fb02d 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,18 @@ The action accepts some properties: case-insensitive-regex: true ``` -## Development +## Development workflow + +### 1. Install tools + +#### Node.js + +[**npm**](https://www.npmjs.com/) is used for dependency management. + +Follow the installation instructions here:
+https://nodejs.dev/download + +### 2. Install dependencies To work on the codebase you have to install all the dependencies: @@ -81,6 +92,22 @@ To work on the codebase you have to install all the dependencies: npm install ``` +### 3. Coding + +Now you're ready to work some [TypeScript](https://www.typescriptlang.org/) magic! + +Make sure to write or update tests for your work when appropriate. + +### 4. Format code + +Format the code to follow the standard style for the project: + +``` +npm run format +``` + +### 5. Run tests + To run tests: ``` @@ -89,7 +116,13 @@ npm run test See the [official Github documentation][pat-docs] to know more about Personal Access Tokens. -## Release +### 6. Commit + +Everything is now ready to make your contribution to the project, so commit it to the repository and submit a pull request. + +Thanks! + +## Release workflow 1. `npm install` to add all the dependencies, included development. 2. `npm run build` to build the Action under the `./lib` folder. From 51174a50dd0d0a21da1636d2e7d5acaf68ba69d5 Mon Sep 17 00:00:00 2001 From: MatteoPologruto Date: Wed, 17 May 2023 09:41:08 +0200 Subject: [PATCH 05/13] Change development policy to repackaging on every code change The previous development policy was to only repackage on each release. This prevented contributors from doing casual beta testing by simply referencing the action as `arduino/arduino-lint-action@main` in a workflow. --- README.md | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 25fb02d..fefc081 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,16 @@ npm run test See the [official Github documentation][pat-docs] to know more about Personal Access Tokens. -### 6. Commit +### 6. Build + +It is necessary to compile the code before it can be used by GitHub Actions. Remember to run these commands before committing any code changes: + +``` +npm run build +npm run pack +``` + +### 7. Commit Everything is now ready to make your contribution to the project, so commit it to the repository and submit a pull request. @@ -124,12 +133,11 @@ Thanks! ## Release workflow -1. `npm install` to add all the dependencies, included development. -2. `npm run build` to build the Action under the `./lib` folder. -3. `npm run test` to see everything works as expected. -4. `npm run pack` to package for distribution -5. `git add src dist` to check in the code that matters. -6. open a PR and request a review. +Instructions for releasing a new version of the action: + +1. If the release will increment the major version, update the action refs in the examples in `README.md` (e.g., `uses: arduino/arduino-lint-action@v1` -> `uses: arduino/arduino-lint-action@v2`). +1. Create a [GitHub release](https://docs.github.com/en/github/administering-a-repository/managing-releases-in-a-repository#creating-a-release), following the `vX.Y.Z` tag name convention. Make sure to follow [the SemVer specification](https://semver.org/). +1. Rebase the release branch for that major version (e.g., `v1` branch for the `v1.x.x` tags) on the tag. If no branch exists for the release's major version, create one. [pat-docs]: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token From c130260038b11246ed163807449ca04db5e62077 Mon Sep 17 00:00:00 2001 From: MatteoPologruto Date: Wed, 17 May 2023 09:46:58 +0200 Subject: [PATCH 06/13] Add CI workflow to check project packaging is up to date On every push and pull request that affects relevant files, check to make sure the ncc packaging is up to date. --- .../check-packaging-ncc-typescript-npm.yml | 51 +++++++++++++++++++ README.md | 1 + 2 files changed, 52 insertions(+) create mode 100644 .github/workflows/check-packaging-ncc-typescript-npm.yml diff --git a/.github/workflows/check-packaging-ncc-typescript-npm.yml b/.github/workflows/check-packaging-ncc-typescript-npm.yml new file mode 100644 index 0000000..3e0f64a --- /dev/null +++ b/.github/workflows/check-packaging-ncc-typescript-npm.yml @@ -0,0 +1,51 @@ +name: Check Packaging + +env: + # See: https://github.com/actions/setup-node/#readme + NODE_VERSION: 16.x + +on: + push: + paths: + - ".github/workflows/check-packaging-ncc-typescript-npm.yml" + - "lerna.json" + - "package.json" + - "package-lock.json" + - "tsconfig.json" + - "**.[jt]sx?" + pull_request: + paths: + - ".github/workflows/check-packaging-ncc-typescript-npm.yml" + - "lerna.json" + - "package.json" + - "package-lock.json" + - "tsconfig.json" + - "**.[jt]sx?" + workflow_dispatch: + repository_dispatch: + +jobs: + check-packaging: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ env.NODE_VERSION }} + + - name: Install dependencies + run: npm install + + - name: Build project + run: | + npm run-script build + npm run-script pack + + - name: Check packaging + # Ignoring CR because ncc's output has a mixture of line endings, while the repository should only contain + # Unix-style EOL. + run: git diff --ignore-cr-at-eol --color --exit-code dist diff --git a/README.md b/README.md index fefc081..079c9d8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Create Changelog [![Actions Status](https://github.com/arduino/create-changelog/workflows/Test%20Action/badge.svg)](https://github.com/arduino/create-changelog/actions) +[![Check Packaging status](https://github.com/arduino/create-changelog/actions/workflows/check-packaging-ncc-typescript-npm.yml/badge.svg)](https://github.com/arduino/create-changelog/actions/workflows/check-packaging-ncc-typescript-npm.yml) This actions is an highly opinionated tool that creates changelogs from the git repository commit history. From 7c15626d4d4b51b81c825f0891994b20aa74cef5 Mon Sep 17 00:00:00 2001 From: MatteoPologruto Date: Wed, 17 May 2023 10:06:51 +0200 Subject: [PATCH 07/13] Add CI workflow to run integration tests On every push and pull request that affects relevant files, run the integration tests. --- .github/workflows/test-integration.yml | 46 ++++++++++++++++++++++++++ README.md | 1 + 2 files changed, 47 insertions(+) create mode 100644 .github/workflows/test-integration.yml diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml new file mode 100644 index 0000000..8e71245 --- /dev/null +++ b/.github/workflows/test-integration.yml @@ -0,0 +1,46 @@ +name: Integration Tests + +on: + pull_request: + push: + schedule: # Scheduled trigger checks for breakage caused by changes to create-changelog + # run every Tuesday at 3 AM UTC + - cron: "0 3 * * 2" + # workflow_dispatch event allows the workflow to be triggered manually + # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#workflow_dispatch + workflow_dispatch: + # repository_dispatch event allows the workflow to be triggered via the GitHub API + # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#repository_dispatch + repository_dispatch: + +jobs: + defaults: + runs-on: ubuntu-latest + + steps: + - name: Checkout local repository + uses: actions/checkout@v3 + + # Run the action using default values as much as possible. + - name: Run action + uses: ./ # Use the action from the local path. + + expected-pass: + runs-on: ubuntu-latest + + env: + CHANGELOG_FILE_PATH: /tmp/CHANGELOG.md + steps: + - name: Checkout local repository + uses: actions/checkout@v3 + + - name: Run action + uses: ./ + with: + tag-regex: '^[0-9]+\.[0-9]+\.[0-9]+.*$' + case-insensitive-regex: true + changelog-file-path: "${{ env.CHANGELOG_FILE_PATH }}" + + - name: Verify report file exists + run: | + [ -e "${{ env.CHANGELOG_FILE_PATH }}" ] diff --git a/README.md b/README.md index 079c9d8..6b93bd2 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![Actions Status](https://github.com/arduino/create-changelog/workflows/Test%20Action/badge.svg)](https://github.com/arduino/create-changelog/actions) [![Check Packaging status](https://github.com/arduino/create-changelog/actions/workflows/check-packaging-ncc-typescript-npm.yml/badge.svg)](https://github.com/arduino/create-changelog/actions/workflows/check-packaging-ncc-typescript-npm.yml) +[![Integration Tests status](https://github.com/arduino/create-changelog/actions/workflows/test-integration.yml/badge.svg)](https://github.com/arduino/create-changelog/actions/workflows/test-integration.yml) This actions is an highly opinionated tool that creates changelogs from the git repository commit history. From f7ff9e6b58d62126674f581ccb2775b406e74273 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2024 12:21:02 +0000 Subject: [PATCH 08/13] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/sync-labels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 9134495..e1b8658 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -71,7 +71,7 @@ jobs: file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }} - name: Pass configuration files to next job via workflow artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: | *.yaml From 89da41b99fe2eba6b35f1b32f1013d2414fe9692 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 05:16:35 +0000 Subject: [PATCH 09/13] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/sync-labels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index e1b8658..34ff6a5 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -109,7 +109,7 @@ jobs: uses: actions/checkout@v4 - name: Download configuration files artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ env.CONFIGURATIONS_ARTIFACT }} path: ${{ env.CONFIGURATIONS_FOLDER }} From adb4c1f04a80e0ef477e568ac4bb61c5e4decef0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:23:40 +0000 Subject: [PATCH 10/13] Bump geekyeggo/delete-artifact from 2 to 5 Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 to 5. - [Release notes](https://github.com/geekyeggo/delete-artifact/releases) - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md) - [Commits](https://github.com/geekyeggo/delete-artifact/compare/v2...v5) --- updated-dependencies: - dependency-name: geekyeggo/delete-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/sync-labels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 34ff6a5..e73db2e 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -115,7 +115,7 @@ jobs: path: ${{ env.CONFIGURATIONS_FOLDER }} - name: Remove unneeded artifact - uses: geekyeggo/delete-artifact@v2 + uses: geekyeggo/delete-artifact@v5 with: name: ${{ env.CONFIGURATIONS_ARTIFACT }} From 46c325525a0e5d512d15f467bd9a6b7c4bf1cd49 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 20 Oct 2024 05:32:50 -0700 Subject: [PATCH 11/13] Don't upload multiple times to same artifact in label sync workflow The "Sync Labels" GitHub Actions workflow is configured to allow the use of multiple shared label configuration files. This is done by using a job matrix in the GitHub Actions workflow to download each of the files from the source repository in a parallel GitHub Actions workflow job. A GitHub Actions workflow artifact was used to transfer the generated files between sequential jobs in the workflow. The "actions/upload-artifact" and "actions/download-artifact" actions are used for this purpose. Previously, a single artifact was used for the transfer of all the shared label configuration files, with each of the parallel jobs uploading its own generated files to that artifact. However, support for uploading multiple times to a single artifact was dropped in version 4.0.0 of the "actions/upload-artifact" action. So it is now necessary to use a dedicated artifact for each of the builds. These can be downloaded in aggregate by using the artifact name globbing and merging features which were introduced in version 4.1.0 of the "actions/download-artifact" action. --- .github/workflows/sync-labels.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index e73db2e..78723a3 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -19,7 +19,7 @@ on: env: CONFIGURATIONS_FOLDER: .github/label-configuration-files - CONFIGURATIONS_ARTIFACT: label-configuration-files + CONFIGURATIONS_ARTIFACT_PREFIX: label-configuration-file- jobs: check: @@ -77,7 +77,7 @@ jobs: *.yaml *.yml if-no-files-found: error - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}${{ matrix.filename }} sync: needs: download @@ -108,16 +108,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Download configuration files artifact + - name: Download configuration file artifacts uses: actions/download-artifact@v4 with: - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + merge-multiple: true + pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}* path: ${{ env.CONFIGURATIONS_FOLDER }} - - name: Remove unneeded artifact + - name: Remove unneeded artifacts uses: geekyeggo/delete-artifact@v5 with: - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}* - name: Merge label configuration files run: | From fe84bcc4604bc7a3304e840a03eb1dfbc381e7a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:27:02 -0700 Subject: [PATCH 12/13] Bump actions/setup-node from 3 to 4 (#52) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/check-packaging-ncc-typescript-npm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-packaging-ncc-typescript-npm.yml b/.github/workflows/check-packaging-ncc-typescript-npm.yml index 3e0f64a..f0b1a91 100644 --- a/.github/workflows/check-packaging-ncc-typescript-npm.yml +++ b/.github/workflows/check-packaging-ncc-typescript-npm.yml @@ -33,7 +33,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} From 862202a5a17e2a59db0f748b4c312c822e2fe037 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 19:10:42 -0700 Subject: [PATCH 13/13] Bump actions/checkout from 3 to 4 (#53) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/check-packaging-ncc-typescript-npm.yml | 2 +- .github/workflows/test-integration.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-packaging-ncc-typescript-npm.yml b/.github/workflows/check-packaging-ncc-typescript-npm.yml index f0b1a91..3c0cb30 100644 --- a/.github/workflows/check-packaging-ncc-typescript-npm.yml +++ b/.github/workflows/check-packaging-ncc-typescript-npm.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 8e71245..03991cf 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout local repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Run the action using default values as much as possible. - name: Run action @@ -32,7 +32,7 @@ jobs: CHANGELOG_FILE_PATH: /tmp/CHANGELOG.md steps: - name: Checkout local repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run action uses: ./