Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: daily web dependabot check #171

Merged
merged 6 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/apply/terraform/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Apply Terraform
description: Apply Terraform configuration

inputs:
aws_access_key_id:
Expand Down
1 change: 1 addition & 0 deletions .github/actions/deploy/backend/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Deploy backend
description: Deploy backend to EC2

inputs:
aws_access_key_id:
Expand Down
1 change: 1 addition & 0 deletions .github/actions/deploy/web/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Deploy web app to S3
description: Deploy web app to S3

inputs:
aws_access_key_id:
Expand Down
1 change: 1 addition & 0 deletions .github/actions/migrate/database/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Migrate database
description: Run database migration

inputs:
db_host:
Expand Down
1 change: 1 addition & 0 deletions .github/actions/validate/terraform/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Validate Terraform
description: Validate Terraform configuration

inputs:
aws_access_key_id:
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
- package-ecosystem: "npm"
directory: "web"
schedule:
interval: "weekly"
interval: "daily"
open-pull-requests-limit: 20
- package-ecosystem: "gomod"
directory: "/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: go vet ./...

- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.62.0
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(go env GOPATH)/bin" v1.62.0

- name: Run golangci-lint
run: golangci-lint run ./...
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/test.workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test

on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/*.yml

jobs:
lint:
name: workflows
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Install actionlint
run: go install github.com/rhysd/actionlint/cmd/actionlint@latest

- name: Run actionlint
run: actionlint
Loading