Skip to content

Commit

Permalink
Refactor GitHub Actions workflow to use latest version of actions/che…
Browse files Browse the repository at this point in the history
…ckout and actions/setup-python
  • Loading branch information
endersonmenezes committed Oct 1, 2024
1 parent 760e78d commit 172b00f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
python-version: [ 3.11 ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Checkout private tools
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: squidfunk/mkdocs-material-insiders
token: ${{ secrets.GH_TOKEN_MKDOCS }}
Expand All @@ -34,12 +34,12 @@ jobs:
fi
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: ${{ github.ref }}
path: .cache
Expand Down

0 comments on commit 172b00f

Please sign in to comment.