Skip to content

Commit

Permalink
docs: update workflows to only allow actions/checkout@v3
Browse files Browse the repository at this point in the history
This commit updates the workflows to only allow actions/checkout@v3.

The previous version of the workflows allowed both actions/checkout@v2 and actions/checkout@v3, which could lead to inconsistent behavior. This change ensures that all workflows use the same version of actions/checkout, which will improve consistency and reliability.
  • Loading branch information
luandro committed Sep 6, 2024
1 parent b85683d commit cf53c2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ jobs:
runs-on: ubuntu-22.04
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/manual-rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ on:
jobs:
rebuild-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-content.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
jobs:
update-content:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit cf53c2c

Please sign in to comment.