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

ci: bump actions #1947

Merged
merged 1 commit into from
Apr 22, 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/workflows/concommits.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: tools

on:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dispatch.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: dispatch

defaults:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: github
on:
- pull_request_target
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: release

defaults:
Expand Down Expand Up @@ -75,11 +76,11 @@ jobs:
make test
- name: upload validator(s) stdout/stderr
if: always() && steps.test.outcome != 'skipped'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: |
.cache/run/upgrade/validators/logs/*.log
.cache/run/upgrade/validators/logs/*.log

notify-homebrew:
runs-on: ubuntu-latest
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
name: github
on:
schedule:
- cron: "0 0 * * *"
- cron: "0 0 * * *"

jobs:
stale-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-label: stale
exempt-pr-labels: keepalive
days-before-stale: 10
days-before-close: 5
stale-pr-message: |
Marked as stale; will be closed in five days.

Cut bait or go fishing!
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-label: stale
exempt-pr-labels: keepalive
days-before-stale: 10
days-before-close: 5
stale-pr-message: |
Marked as stale; will be closed in five days.
Cut bait or go fishing!
1 change: 1 addition & 0 deletions .github/workflows/standardize-yaml.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: tools
on:
push:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: tests

defaults:
Expand Down Expand Up @@ -87,7 +88,7 @@ jobs:
- name: set environment
uses: HatsuneMiku3939/direnv-action@v1
- run: make test-coverage
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4

lint:
runs-on: ubuntu-latest
Expand All @@ -109,7 +110,7 @@ jobs:
- name: lint all
run: make test-lint-all
- name: lint make-sublinters
run: make test-sublinters
run: make test-sublinters

shellcheck:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -170,7 +171,7 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- uses: fregante/setup-git-user@v1
- uses: fregante/setup-git-user@v2
- name: configure git tag
run: echo "RELEASE_TAG=v$(./script/semver.sh bump patch $(git describe --tags $(git rev-list --tags --max-count=1)))" >> $GITHUB_ENV
- name: git tag
Expand Down Expand Up @@ -231,7 +232,7 @@ jobs:
make test
- name: upload validator(s) stdout/stderr
if: always() && steps.test.outcome != 'skipped'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: validators-logs
path: |
Expand Down
Loading