diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index d59be11..d4fab43 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -27,8 +27,8 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-versions }} @@ -43,7 +43,7 @@ jobs: - name: list files run: ls -l . - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v5 with: fail_ci_if_error: true files: coverage.xml diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index c0bfbad..a5e5aaf 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -28,8 +28,8 @@ jobs: python-versions: [3.12] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-versions }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed448a5..fd2d951 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: shell: bash # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Get Changelog Entry id: changelog_reader @@ -49,7 +49,7 @@ jobs: version: ${{ steps.tag_name.outputs.current_version }} path: ./CHANGELOG.md - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-versions }} @@ -64,9 +64,9 @@ jobs: poetry run mkdocs build - name: publish documentation - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: - personal_token: ${{ secrets.PERSONAL_TOKEN }} + personal_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./site - name: Build wheels and source tarball @@ -79,7 +79,7 @@ jobs: - name: create github release id: create_release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: