Skip to content

Commit

Permalink
chore: Update todos to v0.8.0 (#576)
Browse files Browse the repository at this point in the history
<!-- markdownlint-disable first-line-h1 -->

**Description:**

Updates the action so `todos` v0.8.0 is used.

**Related Issues:**

N/A

**Checklist:**

- [x] Review the [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md)
documentation.
- [x] Add a reference to a related issue in the repository.
- [x] Add a description of the changes proposed in the pull request.
- [x] Add unit tests if applicable.
- [x] Update documentation if applicable.
- [x] Add a note in the [CHANGELOG.md](../blob/main/CHANGELOG.md) if
applicable.
- [x] Sign the [Google
CLA](https://cla.developers.google.com/about/google-corporate).

---------

Signed-off-by: Ian Lewis <ianmlewis@gmail.com>
  • Loading branch information
ianlewis committed Feb 21, 2024
1 parent 8dd02a0 commit 8727d6c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.2.0] - 2024-02-21

### Fixed in 1.2.0

- `todo-issue-reopener` no longer fails when issues referenced by TODOs do not
exist ([#553](https://github.com/ianlewis/todo-issue-reopener/issues/553)).

### Updated in 1.2.0

- `todos` v0.8.0 is now used.

## [1.1.0] - 2024-02-05

### Updated in 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ const exec = __importStar(__nccwpck_require__(1514));
const github = __importStar(__nccwpck_require__(5438));
const verifier = __importStar(__nccwpck_require__(5854));
const process_1 = __nccwpck_require__(7282);
const TODOS_VERSION = "v0.7.0";
const TODOS_VERSION = "v0.8.0";
const SLSA_VERIFIER_VERSION = "v2.3.0";
const SLSA_VERIFIER_SHA256SUM = "ea687149d658efecda64d69da999efb84bb695a3212f29548d4897994027172d";
class ReopenError extends Error {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "issue-reopener",
"version": "0.1.0",
"version": "1.2.0",
"private": true,
"description": "Reopen issues that are referenced by TODOs",
"main": "lib/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/reopener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import * as verifier from "./verifier";
import * as config from "./config";
import { env } from "process";

const TODOS_VERSION = "v0.7.0";
const TODOS_VERSION = "v0.8.0";
const SLSA_VERIFIER_VERSION = "v2.3.0";
const SLSA_VERIFIER_SHA256SUM =
"ea687149d658efecda64d69da999efb84bb695a3212f29548d4897994027172d";
Expand Down

0 comments on commit 8727d6c

Please sign in to comment.