Skip to content

Commit

Permalink
ci: bump actions (#1947)
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Troian <[email protected]>
  • Loading branch information
troian committed Apr 22, 2024
1 parent debe78a commit 2325d66
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 18 deletions.
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

0 comments on commit 2325d66

Please sign in to comment.