Skip to content
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
2 changes: 1 addition & 1 deletion .github/actions/release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
release-tag: ${{ env.LATEST_TAG }}

- name: Set up Node.js for npm publish
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
registry-url: "https://registry.npmjs.org"
scope: "@devcycle"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/update-doc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
using: 'composite'
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
repository: DevCycleHQ/devcycle-docs
path: devcycle-docs
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/update-vscode-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
using: 'composite'
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
repository: DevCycleHQ/vscode-extension
path: vscode-extension
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ secrets.AUTOMATION_USER_TOKEN }}
Expand All @@ -57,7 +57,7 @@ jobs:
- run: corepack enable

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: "${{ steps.get_node_version.outputs.NVMRC }}"
registry-url: "https://registry.npmjs.org"
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

- name: Update GitHub Actions
if: inputs.npm-version == 'minor' || inputs.npm-version == 'patch'
uses: peter-evans/repository-dispatch@bf47d102fdb849e755b0b0023ea3e81a44b6f570
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1
with:
token: ${{ secrets.AUTOMATION_USER_TOKEN }}
repository: DevCycleHQ/feature-flag-pr-insights-action
Expand All @@ -146,7 +146,7 @@ jobs:

- name: Update GitHub Actions (Code Usages)
if: inputs.npm-version == 'minor' || inputs.npm-version == 'patch'
uses: peter-evans/repository-dispatch@bf47d102fdb849e755b0b0023ea3e81a44b6f570
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1
with:
token: ${{ secrets.AUTOMATION_USER_TOKEN }}
repository: DevCycleHQ/feature-flag-code-usage-action
Expand All @@ -155,7 +155,7 @@ jobs:

# Move this to release action yml once it works the first time
- name: Update Homebrew Formula
uses: peter-evans/repository-dispatch@bf47d102fdb849e755b0b0023ea3e81a44b6f570
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1
with:
token: ${{ secrets.AUTOMATION_USER_TOKEN }}
repository: DevCycleHQ/homebrew-cli
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: License Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: DevCycleHQ/license-action@main
with:
language: "javascript"
Expand All @@ -22,12 +22,12 @@ jobs:
matrix:
node-version: [22.12]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- run: corepack enable

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand Down
Loading