Skip to content

Commit

Permalink
fix: action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yordis committed Jun 26, 2024
1 parent 1321d61 commit fd232ea
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
fail-fast: false
matrix:
repository:
- ua_parser
- ua_parser

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: true
repository: ${{ format('beam-community/{0}', matrix.repository) }}
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Sync
uses: stordco/actions-sync@v1
Expand Down
4 changes: 2 additions & 2 deletions templates/.github/workflows/common-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
persist-credentials: true

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Setup Elixir
uses: stordco/actions-elixir/setup@v1
Expand Down
2 changes: 1 addition & 1 deletion templates/.github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- id: release
name: Release
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v4
with:
command: manifest
config-file: .github/release-please-config.json
Expand Down
2 changes: 1 addition & 1 deletion templates/.github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
days-before-issue-stale: 30
days-before-issue-close: 15
Expand Down

0 comments on commit fd232ea

Please sign in to comment.