Skip to content

Commit

Permalink
chore(deps): bump actions/github-script from 6 to 7 (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Dec 2, 2023
1 parent d1745c1 commit cb1e605
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Expose stack to deploy
uses: actions/github-script@v6
uses: actions/github-script@v7
id: detected_stack
with:
script: |
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
# Generate the url of the environment
- name: Generate url of the environment
id: envurl
uses: actions/github-script@v6
uses: actions/github-script@v7
if: matrix.stack == 'apps'
with:
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: ${{ github.event_name == 'issues' || github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v6
- uses: actions/github-script@v7
with:
script: |
const { owner, repo } = context.repo
Expand All @@ -38,7 +38,7 @@ jobs:
if: ${{ github.event_name == 'issues' || github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v6
- uses: actions/github-script@v7
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_SPONSOR_CHECKING }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/previews-cleaner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
uses: actions/checkout@v4
# Get all deployement from "previews" environment and set it as inactive
- name: Turn of deployment
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const deployments = await github.rest.repos.listDeployments({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
retention-days: 7
# On pull request, build or change infrastructure according
# to Terraform configuration files
- uses: actions/github-script@v6
- uses: actions/github-script@v7
if: always() && github.event_name == 'pull_request'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit cb1e605

Please sign in to comment.