Skip to content
Merged
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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fi

- name: Checkout workflow repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: tehw0lf/workflows
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-audit-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
fi

- name: checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-crates-io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: check build artifact existence
uses: softwareforgood/check-artifact-v4-existence@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
matrix:
docker: ${{ fromJson(inputs.docker_meta) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: validate docker metadata
if: ${{ inputs.docker_meta != '' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-firefox-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: package firefox extension
run: zip -r ${{ inputs.xpi_path }} * -x .git\* -x .github\*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-python-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: check build artifact existence
uses: softwareforgood/check-artifact-v4-existence@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-android-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
contents: write
packages: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: check app artifact existence
uses: softwareforgood/check-artifact-v4-existence@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
working-directory: ${{ inputs.root_dir }}
steps:
- name: checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: check build artifact existence
uses: softwareforgood/check-artifact-v4-existence@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scan-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scan-dast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
outputs:
zap_result: ${{ steps.zap-scan.outcome }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scan-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set-git-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
working-directory: ${{ inputs.root_dir }}
steps:
- name: checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: extract version from manifest
id: extract_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
run:
working-directory: ${{ inputs.root_dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading