Skip to content

Commit d542329

Browse files
authored
Merge pull request #3370 from github/jm_immutable_actions
fix: update immutable github actions to semver
2 parents 430594e + 024b629 commit d542329

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/workflows/jekyll-preview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
33+
uses: actions/checkout@4.2.2
3434
with:
3535
# For PRs make sure to checkout the PR branch
3636
ref: ${{ github.event.pull_request.head.sha }}
3737
repository: ${{ github.event.pull_request.head.repo.full_name }}
3838
- name: Setup Pages
39-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
39+
uses: actions/configure-pages@v5.0.0
4040
- name: Build with Jekyll
4141
uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1
4242
with:
4343
source: ./
4444
destination: ./_site
4545
- name: Upload artifact
4646
# Automatically uploads an artifact from the './_site' directory by default
47-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
47+
uses: actions/upload-pages-artifact@v3.0.1
4848
# Deployment job
4949
deploy:
5050
environment:
@@ -60,6 +60,6 @@ jobs:
6060
steps:
6161
- name: Deploy to GitHub Pages
6262
id: deployment
63-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
63+
uses: actions/deploy-pages@v4.0.5
6464
with:
6565
preview: "true"

.github/workflows/jekyll.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
30+
uses: actions/checkout@v4.2.2
3131
- name: Setup Pages
32-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
32+
uses: actions/configure-pages@v5.0.0
3333
- name: Build with Jekyll
3434
uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1
3535
with:
3636
source: ./
3737
destination: ./_site
3838
- name: Upload artifact
3939
# Automatically uploads an artifact from the './_site' directory by default
40-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
40+
uses: actions/upload-pages-artifact@v3.0.1
4141
# Deployment job
4242
deploy:
4343
environment:
@@ -48,4 +48,4 @@ jobs:
4848
steps:
4949
- name: Deploy to GitHub Pages
5050
id: deployment
51-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
51+
uses: actions/deploy-pages@v4.0.5

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9
14+
- uses: actions/stale@v9.1.0
1515
with:
1616
stale-pr-message: >
1717
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Set up Git repository
14-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14+
uses: actions/checkout@v4.2.2
1515
- name: Set up Ruby
1616
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 # v1
1717
with:
1818
bundler-cache: true
1919
- name: Set up Node
20-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
20+
uses: actions/setup-node@v4.1.0
2121
- name: Bootstrap
2222
run: script/bootstrap
2323
env:

script/html-proofer

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ url_ignores = [
99
"https://scripts.sil.org/ofl",
1010
"https://the-orbit.net/almostdiamonds/2014/04/10/so-youve-got-yourself-a-policy-now-what/",
1111
"https://pages.18f.gov/open-source-guide/making-readmes-readable/",
12+
"https://foundation.mozilla.org/en/blog/its-a-wrap-movement-building-from-home/",
1213
%r{^https?://readwrite\.com/2014/10/10/open-source-diversity-how-to-contribute/},
1314
%r{^https?://twitter\.com/},
1415
%r{^https?://(www\.)?kickstarter\.com/},

0 commit comments

Comments
 (0)