Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_and_tests_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
os: [ ubuntu-latest, macos-latest, windows-latest ]
fail-fast: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: setup Rust
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jekyll-gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: build AUR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: setup Rust
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
IMAGE_TAG: latest
SHA: ${{ github.event.pull_request.head.sha || github.event.after }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: log in to Docker Hub
if: inputs.upload_artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: download artifact
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
needs: [ create_release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: publish
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/version_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
version: ${{ steps.version.outputs.version }}

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

- id: version
run: |
Expand Down
Loading