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
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
platform: ['chrome', 'firefox']
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Prepare manifest.json
run: |
Expand Down Expand Up @@ -58,12 +58,12 @@ jobs:

- name: Attest
if: github.event.pull_request.head.repo.full_name == github.repository
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-path: '${{ github.workspace }}/screenly-${{ matrix.platform }}-extension.zip'

- name: Upload Archive as Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: screenly-${{ matrix.platform }}-extension
path: artifacts/dist
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1.20.0
uses: ncipollo/release-action@v1.21.0
with:
allowUpdates: true
generateReleaseNotes: true
Expand All @@ -98,7 +98,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Upload SBOM
uses: sbomify/github-action@master
Expand All @@ -113,6 +113,6 @@ jobs:
ENRICH: true

- name: Attest build
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-path: '${{ github.workspace }}/${{ matrix.platform }}-extension.cdx.json'
4 changes: 2 additions & 2 deletions .github/workflows/lint-and-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Run ESLint
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Build Docker images
run: |
docker compose build
Expand All @@ -30,7 +30,7 @@ jobs:
name: Run Prettier
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Build Docker images
run: |
docker compose build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
platform: ['chrome', 'firefox']
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Prepare manifest.json
run: |
Expand Down