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: bump/pin actions #56

Merged
merged 1 commit into from Mar 29, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
@@ -1,3 +1,4 @@
# yamllint disable rule:line-length
---
name: CI

Expand All @@ -17,17 +18,17 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/setup-python@v4.3.0
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.x
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0

local-test:
needs: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- name: Test problem matcher
id: expect-failure
uses: ./
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
@@ -1,3 +1,4 @@
# yamllint disable rule:line-length
---
name: Release

Expand All @@ -12,7 +13,7 @@ jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: softprops/action-gh-release@v1
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion .github/workflows/versioning.yml
@@ -1,3 +1,4 @@
# yamllint disable rule:line-length
---
name: Tag Versioning

Expand All @@ -11,4 +12,4 @@ jobs:
actions-tagger:
runs-on: ubuntu-latest
steps:
- uses: Actions-R-Us/actions-tagger@v2.0.2
- uses: Actions-R-Us/actions-tagger@330ddfac760021349fef7ff62b372f2f691c20fb # v2.03.
2 changes: 2 additions & 0 deletions .yamllint
Expand Up @@ -8,6 +8,8 @@ rules:
brackets:
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
comments:
min-spaces-from-content: 1 # agree with Prettier
document-end:
present: false
indentation:
Expand Down