From 1fea79323c01a9c31ef39ce1334d33d4de058762 Mon Sep 17 00:00:00 2001 From: Bryann Valderrama Date: Thu, 24 Oct 2024 17:13:50 -0500 Subject: [PATCH 1/3] ci: add dependabot config --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From bc2bc4cf3bd01d039e7af5ca725464b839a0ddfa Mon Sep 17 00:00:00 2001 From: Bryann Valderrama Date: Mon, 28 Oct 2024 16:49:47 -0500 Subject: [PATCH 2/3] ci: use major versions in workflow actions --- .github/workflows/labeler.yml | 2 +- .github/workflows/python-publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 7d54d6c..f3cee8c 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest name: Label the PR size steps: - - uses: codelytv/pr-size-labeler@v1.7.0 + - uses: codelytv/pr-size-labeler@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} xs_max_size: '10' diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index b6fbfec..d2b7d9c 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -34,7 +34,7 @@ jobs: run: | python -m build --sdist --wheel --outdir dist/ . - name: Publish package - uses: pypa/gh-action-pypi-publish@v1.9.0 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} From 76d4a68223aac5f3827e041d432a934b5fae0ffd Mon Sep 17 00:00:00 2001 From: Bryann Valderrama Date: Tue, 29 Oct 2024 09:11:40 -0500 Subject: [PATCH 3/3] ci: use specific version in gh-action-pypi-publish action --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index d2b7d9c..9e2ddfc 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -34,7 +34,7 @@ jobs: run: | python -m build --sdist --wheel --outdir dist/ . - name: Publish package - uses: pypa/gh-action-pypi-publish@release/v1 + uses: pypa/gh-action-pypi-publish@v1.10.3 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}