Skip to content

Commit

Permalink
Merge pull request #21 from itmettkeDE/renovate/lock-file-maintenance
Browse files Browse the repository at this point in the history
Lock file maintenance
  • Loading branch information
mettke authored Nov 21, 2022
2 parents 9a49e0e + 199a419 commit a9b01ab
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 54 deletions.
96 changes: 48 additions & 48 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion aws-sso-google-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-sso-google-sync"
version = "1.0.14"
version = "1.0.15"
authors = ["Marc Mettke <marc@itmettke.de>"]
edition = "2021"
description = "Syncs Users and Groups from Google Workspace to AWS SSO"
Expand Down
2 changes: 1 addition & 1 deletion delete-unnused-aws-loggroups/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "delete-unnused-aws-loggroups"
version = "1.0.14"
version = "1.0.15"
authors = ["Marc Mettke <marc@itmettke.de>"]
edition = "2021"
description = "Delete unused loggroups from AWS CloudWatch"
Expand Down
2 changes: 1 addition & 1 deletion export-loggroups-to-s3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "export-loggroups-to-s3"
version = "1.0.14"
version = "1.0.15"
authors = ["Marc Mettke <marc@itmettke.de>"]
edition = "2021"
description = "Exports CloudWatch LogGroups to S3 once a day"
Expand Down
6 changes: 4 additions & 2 deletions export-loggroups-to-s3/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,10 @@ impl<'a> lambda_runtime_types::Runner<'a, (), event::Event, ()> for Runner {

// Start and end time of export
let export_date = invoke_time_backup.date() - chrono::Duration::days(1);
let export_start_time = chrono::NaiveTime::from_hms_milli(0, 0, 0, 0);
let export_end_time = chrono::NaiveTime::from_hms_milli(23, 59, 59, 999);
let export_start_time = chrono::NaiveTime::from_hms_milli_opt(0, 0, 0, 0)
.context("Invalid Start Time operation")?;
let export_end_time = chrono::NaiveTime::from_hms_milli_opt(23, 59, 59, 999)
.context("Invalid End Time operation")?;
let export_start = chrono::NaiveDateTime::new(export_date, export_start_time);
let export_end = chrono::NaiveDateTime::new(export_date, export_end_time);

Expand Down
2 changes: 1 addition & 1 deletion rotate-google-service-user/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rotate-google-service-user"
version = "1.0.14"
version = "1.0.15"
authors = ["Marc Mettke <marc@itmettke.de>"]
edition = "2021"
description = "Rotate Google Service User Credentials"
Expand Down

0 comments on commit a9b01ab

Please sign in to comment.