Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/python-semantic-release-8.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
calebtonn authored Sep 25, 2023
2 parents db5763a + 1357c12 commit 3d59ba1
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 79 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python 3.9
id: setup-python
Expand All @@ -41,7 +41,7 @@ jobs:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
concurrency: release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install secureli
- name: Checkout test repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: pypa/pip
path: pip
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ jobs:
uploaded: ${{ steps.upload.outputs.uploaded }}
steps:
- name: Get App Token
uses: tibdex/github-app-token@v1
uses: tibdex/github-app-token@v2
id: app_token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ steps.app_token.outputs.token }}

- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@v8.0.7
uses: python-semantic-release/python-semantic-release@v8.1.1
with:
github_token: ${{ steps.app_token.outputs.token }}

Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
run: echo uploaded=${{ needs.secureli-release.outputs.uploaded }}

- name: Checkout seCureLI Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
Expand Down Expand Up @@ -116,19 +116,19 @@ jobs:
run: echo uploaded=${{ needs.secureli-release.outputs.uploaded }}

- name: Get App Token
uses: tibdex/github-app-token@v1
uses: tibdex/github-app-token@v2
id: app_token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0

- name: Checkout seCureLI Homebrew Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: slalombuild/homebrew-secureli
token: ${{ steps.app_token.outputs.token }}
Expand Down
Loading

0 comments on commit 3d59ba1

Please sign in to comment.